Update CSS tests to revision 09d27d61d637da536af1d86a8d7bea157592ff9e

This commit is contained in:
Simon Sapin
2015-09-08 11:01:17 +02:00
parent 282f9ade93
commit 5abfa12a4c
234 changed files with 4896 additions and 498 deletions

View File

@@ -9,14 +9,14 @@
<style type="text/css">
/* test cascade importance */
:root { var-color: #1c1 !important; }
:root { var-color: red; }
:root { --color: #1c1 !important; }
:root { --color: red; }
/* test cascade order */
* { color: red; }
/* test cascade order */
* { color: var(color); }
* { color: var(--color); }
</style>
</head>
@@ -26,4 +26,5 @@
<p>Green</p>
<p>The test passes if everything is green. Any red means the test failed.</p>
</body></html>