Sign in
webkit
/
WebKit
/
5477927d104775982421a977c5683c552d9374f2
/
.
/
LayoutTests
/
fast
/
dom
/
HTMLDocument
/
hasFocus-frameless-crash.html
blob: 27c5e8145dab8532313e4f9aa0ae8db52d5494ce [
file
] [
log
] [
blame
]
<p>
This tests that calling HTMLDocument.hasFocus() on a frameless HTMLDocument does not crash.
</p>
<script>
if
(
window
.
testRunner
)
testRunner
.
dumpAsText
();
var
newDoc
=
document
.
implementation
.
createHTMLDocument
(
""
);
newDoc
.
hasFocus
();
</script>