blob: 8e212953c4d71a7964f4779d136272c3346b7e0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<style>
html, body, summary, div {
display: grid;
height: 100%;
}
div {
grid-template-rows: 100%;
}
</style>
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
<body>
<summary>
<div></div>
</summary>
<p>This test has PASSED if it didn't CRASH on Debug builds.</p>
</body>
|