Add tests for using replaceData to change CSS

This commit is contained in:
CYBAI 2017-11-27 02:41:07 +08:00
parent 3a740142d9
commit 96ba56c2c8
3 changed files with 44 additions and 0 deletions

View file

@ -154981,6 +154981,18 @@
{} {}
] ]
], ],
"css/cssom/stylesheet-replacedata-dynamic.html": [
[
"/css/cssom/stylesheet-replacedata-dynamic.html",
[
[
"/css/cssom/stylesheet-replacedata-dynamic-ref.html",
"=="
]
],
{}
]
],
"css/filter-effects/css-filters-animation-blur.html": [ "css/filter-effects/css-filters-animation-blur.html": [
[ [
"/css/filter-effects/css-filters-animation-blur.html", "/css/filter-effects/css-filters-animation-blur.html",
@ -253079,6 +253091,11 @@
{} {}
] ]
], ],
"css/cssom/stylesheet-replacedata-dynamic-ref.html": [
[
{}
]
],
"css/cssom/stylesheet-same-origin.css": [ "css/cssom/stylesheet-same-origin.css": [
[ [
{} {}
@ -511223,6 +511240,14 @@
"875598ca4271d4adaa11fbb01981b290e6235019", "875598ca4271d4adaa11fbb01981b290e6235019",
"testharness" "testharness"
], ],
"css/cssom/stylesheet-replacedata-dynamic-ref.html": [
"e733dc40a41b899ab6c184211d75def5e52af3d4",
"support"
],
"css/cssom/stylesheet-replacedata-dynamic.html": [
"defc259c76eb8ab8b7e3c6ad90951bf4c6f18ab3",
"reftest"
],
"css/cssom/stylesheet-same-origin.css": [ "css/cssom/stylesheet-same-origin.css": [
"268fb9a72d33b3d18bbb82aaaac48bb15c89a88e", "268fb9a72d33b3d18bbb82aaaac48bb15c89a88e",
"support" "support"

View file

@ -0,0 +1,7 @@
<!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>

View file

@ -0,0 +1,12 @@
<!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>