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

Unified Diff: LayoutTests/inspector/elements/styles/region-style-crash.html

Issue 1158883003: DevTools: shard inspector/elements tests for faster execution. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 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/inspector/elements/styles/region-style-crash.html
diff --git a/LayoutTests/inspector/elements/styles/region-style-crash.html b/LayoutTests/inspector/elements/styles/region-style-crash.html
deleted file mode 100644
index 385e7b028bac7dcceaef696e009b2c5b6beaaf2c..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector/elements/styles/region-style-crash.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<html>
-<head>
-<style>
-#article1 { -webkit-flow-into: flow1; }
-#region1 { -webkit-flow-from: flow1; position: absolute; top: 10px; width: 350px; height: 25px;}
-#p1 { color: #ff0000; }
-@-webkit-region #region1 {
- #p1 { color: #008000; }
-}
-
-</style>
-<script src="../../../http/tests/inspector/inspector-test.js"></script>
-<script src="../../../http/tests/inspector/elements-test.js"></script>
-<script>
-
-function test()
-{
- InspectorTest.selectNodeAndWaitForStylesWithComputed("p1", dumpAllStyles);
-
- function dumpAllStyles()
- {
- InspectorTest.dumpSelectedElementStyles();
- InspectorTest.completeTest();
- }
-}
-
-</script>
-</head>
-
-<body onload="runTest()">
-<p>
-Tests that webkit css region styling can be parsed correctly. Test passes if it doesn't crash.
-</p>
-
-<div id="article1">
- <p id="p1">P color styled in region: #008000.</p>
-</div>
-<div id="region1" class="regionBox"></div>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698