blob: 6ea38f30d37e82396283c0a39f3976b81566a855 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!doctype html>
<html>
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
<body>
<p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=17421">bug 17421</a>:
Lack of end tag of SELECT element causes inaccessible (blank) a rest of a page rendered.</p>
<p>There should be two green bars below.</p>
<select>
<input>
<p style="background-color:lime;">PASS</p>
<select>
<textarea></textarea>
<p style="background-color:lime;">PASS</p>
</body>
</html>
|