https://github.com/web-platform-tests/wpt
Raw File
Tip revision: c538030f9f29b5c58b69c6932791aa950ff80904 authored by Raymond Toy on 11 October 2018, 21:41:30 UTC
Compute azimuth correctly according to the spec
Tip revision: c538030
slots-outside-shadow-dom.html
<!doctype html>
<meta charset=utf-8>
<title></title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<div id="host1"><slot>foo</slot></div>
<script>

test(() => {
  var host1 = document.getElementById("host1");
  var sr = host1.attachShadow({mode: "open"});
  sr.innerHTML = "<slot></slot>";
  assert_array_equals(sr.firstChild.assignedNodes({ flatten: true }), [host1.firstChild]);
}, "Light DOM slot element should be in flattened assignedNodes");

</script>
back to top