mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 04:27:37 +00:00
24 lines
515 B
HTML
24 lines
515 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<style>
|
|
div {
|
|
background-color: red;
|
|
}
|
|
div[mixedCase=true] {
|
|
background-color: green !important;
|
|
}
|
|
</style>
|
|
<script>
|
|
function f() {
|
|
document.getElementById("t").setAttribute("mixedCase", "true");
|
|
document.documentElement.className = "";
|
|
}
|
|
window.addEventListener("MozReftestInvalidate", f, false);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="t">text</div>
|
|
</body>
|
|
</html>
|