| Index: third_party/WebKit/LayoutTests/fullscreen/full-screen-will-change.html
|
| diff --git a/third_party/WebKit/LayoutTests/fullscreen/full-screen-will-change.html b/third_party/WebKit/LayoutTests/fullscreen/full-screen-will-change.html
|
| index 38e68b6bd647fa3400b9836cb4c9ca1649e2b9f7..9186be1f695eb0dc5f69060a5be0f5c21b874ec9 100644
|
| --- a/third_party/WebKit/LayoutTests/fullscreen/full-screen-will-change.html
|
| +++ b/third_party/WebKit/LayoutTests/fullscreen/full-screen-will-change.html
|
| @@ -1,26 +1,7 @@
|
| <!DOCTYPE html>
|
| <html>
|
| <style>
|
| - #bad {
|
| - position: fixed;
|
| - top: 0px;
|
| - left: 0px;
|
| - background-color: red;
|
| - width: 100%;
|
| - height: 100%;
|
| - }
|
| -
|
| - #fixed-container {
|
| - position: fixed;
|
| - top: 0px;
|
| - left: 0px;
|
| - z-index: 0;
|
| - }
|
| -
|
| - #fullscreenme {
|
| - height: 400px;
|
| - width: 400px;
|
| - border: 0px;
|
| + #container {
|
| will-change: transform;
|
| }
|
| </style>
|
| @@ -51,10 +32,8 @@
|
| window.addEventListener("load", doTest, false);
|
| </script>
|
| <body>
|
| - <!-- when full screening the iframe, bad should not be visible -->
|
| - <div id="fixed-container">
|
| + <div id="container">
|
| <iframe id="fullscreenme" src="resources/green.html"></iframe>
|
| </div>
|
| - <div id="bad"></div>
|
| </body>
|
| </html>
|
|
|