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

Unified Diff: third_party/WebKit/LayoutTests/fast/repaint/repaint-across-writing-mode-boundary.html

Issue 2321183002: Move repaint tests (except for svg/) 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/fast/repaint/repaint-across-writing-mode-boundary.html
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/repaint-across-writing-mode-boundary.html b/third_party/WebKit/LayoutTests/fast/repaint/repaint-across-writing-mode-boundary.html
deleted file mode 100644
index 625cfde3732deb5962a8236bbd5265f79fbdb2b4..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/repaint/repaint-across-writing-mode-boundary.html
+++ /dev/null
@@ -1,77 +0,0 @@
-<!DOCTYPE HTML>
-<html>
-<head>
-<script src="resources/text-based-repaint.js"></script>
-<script>
-function repaintTest() {
- if (eventSender) {
- eventSender.mouseMoveTo(569, 189);
- eventSender.mouseDown();
- eventSender.mouseMoveTo(569, 189);
- eventSender.mouseMoveTo(569, 229);
- eventSender.mouseUp();
- }
-}
-</script>
-
-<title>Repaint Test Across Writing Mode Boundaries</title>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-
-<style type="text/css">
-
-body {
- margin: 50px;
- font-size: 20px;
- font-family: Times;
-}
-
-.lrblock {
- writing-mode: tb-lr; /* IE */
- -webkit-writing-mode: vertical-lr;
- height: 275px;
- margin-bottom: 50px;
- padding: 1px;
- background-color: #eee;
-}
-
-.basic {
- width: 275px;
- margin: 0;
- padding: 1px;
- writing-mode: lr-tb; /* IE */
- -webkit-writing-mode: horizontal-tb;
-}
-
-div.d0 {
- background-color: #fee;
-}
-
-div.d1 {
- background-color: #ffe;
-}
-
-p {
- margin: 10% 5% 10% 5%;
- background-color: #faa;
- border-left: 20px solid #f88;
- border-right: 20px solid #f88;
- line-height: 1em;
- padding: 1px;
-}
-
-.vert {
- writing-mode: tb-rl; /* IE */
- -webkit-writing-mode: vertical-rl;
-}
-
-</style>
-</head>
-<body onload="runRepaintAndPixelTest()">
-
-<div class="lrblock">
-<div class="basic d0"><p>第一段落 paragraph 1</p><p>第二段落 paragraph 2</p></div>
-<div class="basic d1 vert"><p>第一段落 paragraph 1</p><p>第二段落 paragraph 2</p></div>
-</div>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698