blob: 0a8bce50e71e1a1e1d54b6833148e6e52df910a5 (
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
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Testcase for Bug 847850</title>
<style>
div
{
position:absolute;
background-color:#ddd;
width:400px;
height:200px;
}
</style>
</head>
<body>
<p>The placeholder text should not be visible:</p>
<div></div>
<input type=text placeholder="Placeholder text"></input>
</body>
</html>
|