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

Unified Diff: LayoutTests/fast/regions/cssom/element-region-overset-state-negative-letter-spacing.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/element-region-overset-state-negative-letter-spacing.html
diff --git a/LayoutTests/fast/regions/cssom/element-region-overset-state-negative-letter-spacing.html b/LayoutTests/fast/regions/cssom/element-region-overset-state-negative-letter-spacing.html
deleted file mode 100644
index 1876b190e5573b04b691c1de07b0bd51aee027e6..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/cssom/element-region-overset-state-negative-letter-spacing.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<html>
-<head>
-<script src="../../../resources/js-test.js"></script>
-<style>
-#content {
- -webkit-flow-into: article;
- letter-spacing: -1px;
- direction: rtl;
-}
-#region_1, #region_2{
- -webkit-flow-from: article;
- overset:visible;
- display:inline-block;
- vertical-align:top;
- margin:10px;
-}
-
-#region_1 { height:110px; width:200px; }
-#region_2 { height:110px; width:200px; }
-
-</style>
-</head>
-<body>
-<h1 id="content">Lorem ipsum</h1>
-<div id="region_1"></div>
-<div id="region_2"></div>
-
-<script>
- description("Tests Element.webkitRegionOverset attribute")
- if (window.testRunner) {
- testRunner.dumpAsText();
- }
- var region_1 = document.getElementById("region_1");
- var region_2 = document.getElementById("region_2");
- var content = document.getElementById("content");
- shouldBeEqualToString("region_1.webkitRegionOverset", "fit");
- shouldBeEqualToString("region_2.webkitRegionOverset", "empty");
- document.body.removeChild(region_1);
- document.body.removeChild(region_2);
- document.body.removeChild(content);
-
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698