Index: third_party/WebKit/LayoutTests/fullscreen/full-screen-iframe-ua-style.html |
diff --git a/third_party/WebKit/LayoutTests/fullscreen/full-screen-iframe-ua-style.html b/third_party/WebKit/LayoutTests/fullscreen/full-screen-iframe-ua-style.html |
index 0d898c9dd22ac25a2739fa672178716dd807106b..0ae491e8398e5630e2570e75c4fc54fb426ad8fb 100644 |
--- a/third_party/WebKit/LayoutTests/fullscreen/full-screen-iframe-ua-style.html |
+++ b/third_party/WebKit/LayoutTests/fullscreen/full-screen-iframe-ua-style.html |
@@ -5,16 +5,18 @@ |
document.offsetWidth; |
frame.contentDocument.offsetWidth; |
var videoEnteredFullScreen = function() { |
- test("getComputedStyle(document.documentElement).overflow == 'hidden'"); |
+ test("getComputedStyle(ancestor).position == 'static'"); |
endTest(); |
}; |
waitForEvent(frame.contentDocument, "webkitfullscreenchange", videoEnteredFullScreen); |
- test("getComputedStyle(document.documentElement).overflow == 'visible'"); |
+ test("getComputedStyle(ancestor).position == 'relative'"); |
runWithKeyDown(function(){ |
frame.contentDocument.querySelector("video").webkitRequestFullScreen(); |
}); |
} |
</script> |
-<iframe allowfullscreen id="frame" src="data:text/html,<video></video>" onload="runTest()"></iframe> |
+<div id="ancestor" style="position:relative"> |
+ <iframe allowfullscreen id="frame" src="data:text/html,<video></video>" onload="runTest()"></iframe> |
+</div> |