mirror of
https://github.com/servo/servo.git
synced 2025-08-17 03:15:34 +01:00
Disable the iframe content test due to #3986.
This commit is contained in:
parent
85a2f0b66a
commit
62a74cf3f0
1 changed files with 0 additions and 0 deletions
|
@ -1,27 +0,0 @@
|
|||
<html>
|
||||
<head>
|
||||
<meta charset="utf8" />
|
||||
<script src="harness.js"></script>
|
||||
<title>Iframe contentDocument test.</title>
|
||||
</head>
|
||||
<body>
|
||||
<iframe src="resources/iframe_contentDocument_inner.html" id="iframe"></iframe>
|
||||
<script>
|
||||
waitForExplicitFinish();
|
||||
|
||||
var timeout = 100;
|
||||
var iframe = document.getElementById('iframe');
|
||||
function test_contentWindow() {
|
||||
if (!iframe.contentWindow) {
|
||||
// Iframe not loaded yet, try again.
|
||||
// No load event for iframe, insert bug number here.
|
||||
setTimeout(test_contentWindow, timeout);
|
||||
return;
|
||||
}
|
||||
is(iframe.contentDocument.getElementById('test').textContent, 'value');
|
||||
finish();
|
||||
}
|
||||
test_contentWindow();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue