blob: 8a9c5f64afc0a8d3764238d6e049226a4b24a59c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<meta charset="UTF-8">
<script>
function boom()
{
document.getElementById("c").style.content = "'x'";
document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", boom, false);
</script>
</head>
<body style="display: inline-flex;"><div></div><div style="display: table-caption;"></div><canvas id="c"></canvas></body>
</html>
|