2 <html class=
"reftest-wait">
3 <!-- Test: when focused, clearing placeholder attribute should work. -->
4 <script type=
"text/javascript">
5 function focusPlaceholder()
7 document
.getElementById('p1').focus();
9 function setPlaceholder()
11 document
.getElementById('p1').removeAttribute('placeholder');
13 function disableReftestWait()
15 document
.documentElement
.className
= '';
19 <body onload=
"focusPlaceholder();">
20 <input type=
"text" id=
"p1" value=
"" placeholder=
"my placeholder" onfocus=
"setPlaceholder(); disableReftestWait();">