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

Unified Diff: LayoutTests/fast/regions/cssom/flowed-content-transform-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-transform-bounding-client-rect.html
diff --git a/LayoutTests/fast/regions/cssom/flowed-content-transform-bounding-client-rect.html b/LayoutTests/fast/regions/cssom/flowed-content-transform-bounding-client-rect.html
deleted file mode 100644
index 50e8fba5488be7e788eaa158774568da3766f7d3..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/cssom/flowed-content-transform-bounding-client-rect.html
+++ /dev/null
@@ -1,45 +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 { -webkit-transform: translate(10px, 10px); }
- #region2 { -webkit-transform: translate(30px, 20px) rotate(45deg); }
- #region3 { -webkit-transform: translate(70px, 30px) scale(2,2); }
-
- .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, 80, 90, 150, 70, 70],
- orange: [15, 155, 115, 255, 100, 100]
- };
-
- if (testBoundingRects(expectedBoundingRects, 1))
- document.body.className = "finished";
-</script>

Powered by Google App Engine
This is Rietveld 408576698