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

Unified Diff: LayoutTests/fast/regions/cssom/flowed-content-bounding-client-rect-vertical.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/flowed-content-bounding-client-rect-vertical.html
diff --git a/LayoutTests/fast/regions/cssom/flowed-content-bounding-client-rect-vertical.html b/LayoutTests/fast/regions/cssom/flowed-content-bounding-client-rect-vertical.html
deleted file mode 100644
index 8f41ee9c8e5234d52629ebb31f004ca8d8d2cae3..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/cssom/flowed-content-bounding-client-rect-vertical.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<!DOCTYPE html>
-
-<link rel="stylesheet" href="../resources/region-style.css"></link>
-<script type="text/javascript" charset="utf-8" src="../resources/helper.js"></script>
-
-<style>
- html { -webkit-writing-mode: vertical-lr; }
-
- body { margin: 10px; }
-
- #region1 {
- position: absolute;
- left: 100px;
- width: 100px;
- height: 50px;
- }
-
- #region2 {
- position: absolute;
- left: 240px;
- width: 60px;
- height: 70px;
- padding: 10px 20px 30px 40px;
- border: 1px solid black;
- }
-
- .finished #region1, .finished #region2 {
- display: none;
- }
-</style>
-
-<div id="flow" class="flowArticle">
- <div id="green" class="greenBox"></div>
- <div id="blue" class="blueBox"></div>
- <div id="orange" class="orangeBox"></div>
-</div>
-
-<div id="region1" class="regionArticle"></div>
-<div id="region2" class="regionArticle"></div>
-
-<script>
- if (window.testRunner)
- testRunner.dumpAsText();
-
- var expectedBoundingRects = {
- green: [10, 100, 60, 150, 50, 50],
- blue: [10, 150, 60, 200, 50, 50],
- orange: [21, 281, 71, 331, 50, 50]
- };
-
- if (testBoundingRects(expectedBoundingRects))
- document.body.className = "finished";
-</script>

Powered by Google App Engine
This is Rietveld 408576698