blob: 947c01a8f5d03c22785da3a282b6abfe996f2409 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html>
<head>
<title>Shadow DOM Test</title>
<link rel="author" title="Kazuhito Hokamura" href="mailto:k.hokamura@gmail.com">
<style>
div {
width: 100px;
height: 100px;
background: green;
}
</style>
</head>
<body>
<p>Test passes if following box is green.</p>
<div></div>
</body>
</html>
|