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

Unified Diff: LayoutTests/fast/regions/cssom/flowed-content-bounding-client-rect.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.html
diff --git a/LayoutTests/fast/regions/cssom/flowed-content-bounding-client-rect.html b/LayoutTests/fast/regions/cssom/flowed-content-bounding-client-rect.html
deleted file mode 100644
index 321638f197a5631458ae35ae63ab1968d05434e9..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/cssom/flowed-content-bounding-client-rect.html
+++ /dev/null
@@ -1,60 +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>
- body { margin: 10px; }
-
- .box {
- width: 50px;
- height: 50px;
- float: left;
- }
-
- #region1 {
- position: absolute;
- padding: 10px;
- }
-
- #region2 {
- position: absolute;
- left: 100px;
- border: 10px solid black;
- }
-
- #region3 {
- position: absolute;
- left: 200px;
- padding: 10px;
- border: 10px solid black;
- }
-
- .finished #region1, .finished #region2, .finished #region3 {
- display: none;
- }
-</style>
-
-<div 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 box"></div>
-<div id="region2" class="regionArticle box"></div>
-<div id="region3" class="regionArticle box"></div>
-
-<script>
- if (window.testRunner)
- testRunner.dumpAsText();
-
- var expectedBoundingRects = {
- green: [20, 20, 70, 70, 50, 50],
- blue: [20, 110, 70, 160, 50, 50],
- orange: [30, 220, 80, 270, 50, 50]
- };
-
- if (testBoundingRects(expectedBoundingRects))
- document.body.className = "finished";
-</script>

Powered by Google App Engine
This is Rietveld 408576698