mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-04 10:05:51 +00:00
22 lines
509 B
HTML
22 lines
509 B
HTML
<!DOCTYPE HTML>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<div id="outer"><span id="distnode">text</span></div>
|
|
<script>
|
|
var shadowRoot = document.getElementById('outer').createShadowRoot();
|
|
shadowRoot.innerHTML = '<div><content></content></div>';
|
|
|
|
function tweak() {
|
|
var distNode = document.getElementById("distnode");
|
|
distNode.textContent = "Hello World";
|
|
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
|
|
window.addEventListener("MozReftestInvalidate", tweak);
|
|
</script>
|
|
</body>
|
|
</html>
|