gecko-dev/layout/base/tests/bug1415416-ref.html
Makoto Kato 12f318b242 Bug 1415416 - Part 2. Add test. r=masayuki
MozReview-Commit-ID: 5Bbh5ifPSs7

--HG--
extra : rebase_source : 07cabbc6f2ed00018c4b6a3ce8eebe121cb7998f
2018-01-11 18:39:40 +09:00

22 lines
487 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1415416
-->
<head>
<title>Test for Bug 1415416</title>
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
<script>
function runTest()
{
sendKey("TAB");
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="runTest()">
<input id = "text1" type="text" autofocus value=""/>
<input id = "text2" type="text" value=""/>
</body>
</html>