blob: f7048c31b81992ae3998d7d9420ff01358f2b443 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<style>
.flexContainer {
display: flex;
width: 300px;
height: 300px;
background: yellow;
}
.flexItem {
border: 1px dashed purple;
}
</style>
<script>
function finish() {
document.documentElement.removeAttribute('class');
}
</script>
</head>
<body onload="setTimeout(finish, 0)">
<div class="flexContainer">
<embed src="about:blank" class="flexItem"></embed>
</div>
</body>
</html>
|