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

Unified Diff: LayoutTests/fast/regions/cssom/offsetLeft-offsetTop-in-region-float-vert-rl.html

Issue 159933010: Remove everything region-specific from LayoutTests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 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/fast/regions/cssom/offsetLeft-offsetTop-in-region-float-vert-rl.html
diff --git a/LayoutTests/fast/regions/cssom/offsetLeft-offsetTop-in-region-float-vert-rl.html b/LayoutTests/fast/regions/cssom/offsetLeft-offsetTop-in-region-float-vert-rl.html
deleted file mode 100644
index f619492e9c2c6199b55aadc8be27a74466ef4ae1..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/cssom/offsetLeft-offsetTop-in-region-float-vert-rl.html
+++ /dev/null
@@ -1,197 +0,0 @@
-<html style="-webkit-writing-mode: vertical-rl;">
-<head>
- <style type="text/css">
- /* Make sure the console and the description don't interfere with the rest of the layout. */
- #description {
- position: absolute;
- left: 0px;
- }
-
- #console {
- position: absolute;
- left: 100px;
- }
-
- #divMain1 {
- -webkit-flow-into: flow1;
- border: 2px solid blue;
- width: 160px;
- margin: 10px;
- padding: 5px;
- }
-
- #divMain2 {
- border: 2px solid blue;
- width: 135px;
- margin: 5px;
- -webkit-flow-into: flow2;
- }
-
- .divText {
- border: 1px solid green;
- color: green;
- font-size: 14px;
- padding: 5px;
- }
-
- #divText1 {
- width: 60px;
- height: 240px;
- margin: 10px;
- padding-left: 5px;
- float: right;
- }
-
- #divText2 {
- width: 60px;
- height: 190px;
- float: left;
- margin: 10px;
- }
-
- #region1 {
- -webkit-flow-from: flow1;
- border: 1px solid red;
- position: absolute;
- top: 78px;
- left: 608px;
- height: 400px;
- width: 190px;
- }
-
- #region2 {
- -webkit-flow-from: flow2;
- border: 1px solid red;
- position: absolute;
- left: 338px;
- top: 182px;
- width: 150px;
- height: 400px;
- }
-
- .grid {
- position: absolute;
- top: 650px;
- width: 100px;
- height: 100px;
- border-right: 1px solid blue;
- text-align: right;
- font-size: 14px;
- color: blue;
- }
-
- .vgrid {
- position: absolute;
- left: 900px;
- width: 100px;
- height: 100px;
- border-bottom: 1px solid blue;
- text-align: bottom;
- font-size: 14px;
- color: blue;
- }
-
- #grid1 {
- left: 0px;
- }
- #grid2 {
- left: 100px;
- }
- #grid3 {
- left: 200px;
- }
- #grid4 {
- left: 300px;
- }
- #grid5 {
- left: 400px;
- }
- #grid6 {
- left: 500px;
- }
- #grid7 {
- left: 600px;
- }
-
- #vgrid1 {
- top: 0px;
- }
- #vgrid2 {
- top: 100px;
- }
- #vgrid3 {
- top: 200px;
- }
- #vgrid4 {
- top: 300px;
- }
- #vgrid5 {
- top: 400px;
- }
- #vgrid6 {
- top: 500px;
- }
- #vgrid7 {
- top: 600px;
- }
- #vgrid8 {
- top: 700px;
- border: none;
- }
- </style>
-
- <script src="../../../resources/js-test.js"></script>
-</head>
-
-<body id="body">
-
- <div id="divMain1">
- <div class="divText" id="divText1"><b>divText1</b></div>
- <span class="mySpan" style="color: blue;">This text should flow around the green div. This text should flow around the green div. This text should flow around the green div. This text should flow around the green div. This text should flow around the green div.</span>
- </div>
-
- <div id="divMain2">
- <div class="divText" id="divText2"><b>divText2</b></div>
- <span class="mySpan" style="color: blue;">This text should flow around the green div. This text should flow around the green div. This text should flow around the green div. This text should flow around the green div.</span>
- </div>
-
- <div class="region" id="region1"></div>
- <div class="region" id="region2"></div>
-
- <div id="grid1" class="grid">100px</div>
- <div id="grid2" class="grid">200px</div>
- <div id="grid3" class="grid">300px</div>
- <div id="grid4" class="grid">400px</div>
- <div id="grid5" class="grid">500px</div>
- <div id="grid6" class="grid">600px</div>
- <div id="grid7" class="grid">700px</div>
-
- <div id="vgrid1" class="vgrid"></div>
- <div id="vgrid2" class="vgrid">100px</div>
- <div id="vgrid3" class="vgrid">200px</div>
- <div id="vgrid4" class="vgrid">300px</div>
- <div id="vgrid5" class="vgrid">400px</div>
- <div id="vgrid6" class="vgrid">500px</div>
- <div id="vgrid7" class="vgrid">600px</div>
- <div id="vgrid8" class="vgrid">700px</div>
-
- <script>
- description("Test offsetLeft and offsetTop in a named flow with floats in vertical-rl mode.")
-
- shouldBe("divText1.offsetParent", "document.body");
- shouldBe("divText1.offsetLeft", "700");
- shouldBe("divText1.offsetTop", "200");
-
- shouldBe("divText2.offsetParent", "document.body");
- shouldBe("divText2.offsetLeft", "400");
- shouldBe("divText2.offsetTop", "200");
-
- if (window.testRunner) {
- var allGraphicElements = document.querySelectorAll(".region, .divText, .grid, .vgrid, .mySpan");
- for (var i=0; i<allGraphicElements.length; i++)
- allGraphicElements[i].style.display = "none";
- }
-
- </script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698