blob: d024b2a998bde9686b99771ce7b97f73f7a1c983 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Add elements tests</title>
<style>
body::before {
content: "pseudo-element";
}
</style>
</head>
<body>
<div id="foo"></div>
<svg>
<rect x="0" y="0" width="100" height="50"></rect>
</svg>
<div id="bar">
<div id="baz"></div>
</div>
<iframe src="data:text/html;charset=utf-8,Test iframe content"></iframe>
</body>
</html>
|