Status: FAIL | Duration: 11ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/cssom/stylesheet-replacedata-dynamic.html
<!doctype html> <title>(Test #1) CSS Test: Dynamic changes to the stylesheet contents using replaceData are reflected</title> <link rel="match" href="stylesheet-replacedata-dynamic-ref.html"> <link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@mozilla.com"> <link rel="author" title="Cheng You Bai" href="mailto:cyb.ai.815@gmail.com"> <link rel="help" href="https://dom.spec.whatwg.org/#dom-characterdata-replacedata"> <style>.fail { color: green }</style> <div class="pass">Should be green</div> <script> document.body.offsetTop; document.querySelector('style').firstChild.replaceData(1, 4, "pass"); </script>
/css/cssom/stylesheet-replacedata-dynamic-ref.html
<!doctype html> <title>(Ref #1) CSS Test Reference</title> <link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@mozilla.com"> <link rel="author" title="Cheng You Bai" href="mailto:cyb.ai.815@gmail.com"> <link rel="help" href="https://dom.spec.whatwg.org/#dom-characterdata-replacedata"> <style>.pass { color: green }</style> <div class="pass">Should be green</div>