Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(195)

Unified Diff: LayoutTests/platform/chromium/compositing/force-compositing-mode/overflow-iframe-enter-compositing.html

Issue 14120003: Move LayoutTests from platform/chromium/... to generic location (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/platform/chromium/compositing/force-compositing-mode/overflow-iframe-enter-compositing.html
diff --git a/LayoutTests/platform/chromium/compositing/force-compositing-mode/overflow-iframe-enter-compositing.html b/LayoutTests/platform/chromium/compositing/force-compositing-mode/overflow-iframe-enter-compositing.html
deleted file mode 100644
index f02e34827e2b64fd25dd676974d12daa811ec40d..0000000000000000000000000000000000000000
--- a/LayoutTests/platform/chromium/compositing/force-compositing-mode/overflow-iframe-enter-compositing.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<html>
-<head>
- <style>
- iframe {
- height: 150px;
- width: 150px;
- }
- </style>
- <script>
- if (window.internals) {
- internals.settings.setForceCompositingMode(true);
- internals.settings.setAcceleratedCompositingForScrollableFramesEnabled(true);
- }
- function doTest()
- {
- if (window.testRunner)
- testRunner.display();
- var iframe = document.getElementById("parent-iframe");
- var box = iframe.contentDocument.getElementById("box");
- box.setAttribute("style", "height:500px;width:500px;");
- iframe.contentDocument.body.offsetWidth; // See bug 41999
- if (window.testRunner) {
- testRunner.dumpAsText(false);
- document.getElementById('layertree').innerText = window.internals.layerTreeAsText(document);
- }
- }
- window.addEventListener("load", doTest, false);
- </script>
-</head>
-<body>
- <iframe id="parent-iframe" src="resources/subframe-small.html"></iframe>
- <pre id="layertree"></p>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698