blob: 11a6d2e4add6899880569ffb240d8173f5fb3d31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html>
<script>
if (window.testRunner)
testRunner.overridePreference("WebKitCSSGridLayoutEnabled", 1);
</script>
<link href="resources/grid.css" rel="stylesheet">
<style>
.a {
height: 100%;
width: 30px;
background: salmon;
}
</style>
<body>
<div class="grid">
<div class="a"></div>
</div>
</body>
</html>
|