mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|