Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/cssom/preferred-stylesheet-reversed-order.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="t1">This text should be green</div>
<script>
function createStyleElement(text, title) {
var elm = document.createElement("style");
elm.setAttribute("title", title);
elm.appendChild(document.createTextNode(text));
return elm;
}
test(function() {
document.head.insertBefore(createStyleElement("#t1 {color:green}", "preferred"), document.head.firstChild);
document.head.insertBefore(createStyleElement("#t1 {color:red}", "notpreferred"), document.head.firstChild);
assert_equals(getComputedStyle(t1).color, "rgb(0, 128, 0)");
}, "Preferred stylesheet where insertion order is tree order");
</script>