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

Unified Diff: third_party/WebKit/LayoutTests/compositing/repaint/transform-style-change.html

Issue 2327223002: Move all remaining fast/repaint tests to paint/invalidation (Closed)
Patch Set: Created 4 years, 3 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: third_party/WebKit/LayoutTests/compositing/repaint/transform-style-change.html
diff --git a/third_party/WebKit/LayoutTests/compositing/repaint/transform-style-change.html b/third_party/WebKit/LayoutTests/compositing/repaint/transform-style-change.html
deleted file mode 100644
index 77c258f26136ad8d51c749e8cbf82711081e30da..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/compositing/repaint/transform-style-change.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<!DOCTYPE html>
-<!-- Tests that an element composited with transform-style: preserve-3d still renders when switched to transform-style: flat -->
-<div id="box" style="width:100px; height:100px; background-color: green; transform: translateZ(0); -webkit-transform-style: preserve-3d"></div>
-<script src="../../resources/run-after-layout-and-paint.js"></script>
-<script>
-function test() {
- document.getElementById("box").style.webkitTransformStyle = "flat";
- if (window.testRunner)
- testRunner.notifyDone();
-}
-
-if (window.testRunner) {
- testRunner.waitUntilDone();
- testRunner.dumpAsTextWithPixelResults();
-}
-// Force one composite with preserve-3d
-runAfterLayoutAndPaint(test);
-</script>

Powered by Google App Engine
This is Rietveld 408576698