blob: 19fc172937b600fd568c5692fce31289b35e1247 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html class="reftest-wait">
<!-- Test: placeholder shouldn't show new lines (\r version) -->
<link rel='stylesheet' type='text/css' href='placeholder-style.css'>
<script type="text/javascript">
function setPlaceholder()
{
document.getElementById('p1').placeholder = 'my\r placeholder';
}
function disableReftestWait()
{
document.documentElement.className = '';
}
</script>
<body onload="setPlaceholder(); disableReftestWait();">
<input type="text" id="p1" value="" placeholder="">
</body>
</html>
|