1
0
Fork 0
firefox/testing/web-platform/mozilla/tests/css/quirks-invalidation-standard-sheet.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

14 lines
588 B
HTML

<!-- quirks, intentionally -->
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<div class="mixedCase"></div>
<script>
test(function() {
const kLime = "rgb(0, 255, 0)";
let div = document.querySelector("div");
assert_not_equals(getComputedStyle(div).color, kLime);
SpecialPowers.DOMWindowUtils.loadSheetUsingURIString('data:text/css,.mixedCase{color:lime}', 1)
assert_equals(getComputedStyle(div).color, kLime);
}, "Invalidation of quirks documents when standard sheets are inserted works properly")
</script>