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

Unified Diff: LayoutTests/inspector/elements/styles/keyframes-rules.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/keyframes-rules.html
diff --git a/LayoutTests/inspector/elements/styles/keyframes-rules.html b/LayoutTests/inspector/elements/styles/keyframes-rules.html
deleted file mode 100644
index 3348dfd8db0e2a89694b9cb581f7b7e4a22854e0..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector/elements/styles/keyframes-rules.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<html>
-<head>
-<style>
-@-webkit-keyframes fadeout {
- from { background-color: black; }
- to { background-color: white; }
-}
-
-* {
- background-color: papayawhip;
-}
-</style>
-<script src="../../../http/tests/inspector/inspector-test.js"></script>
-<script src="../../../http/tests/inspector/elements-test.js"></script>
-<script>
-function test()
-{
- InspectorTest.runTestSuite([
- function testInit(next)
- {
- InspectorTest.selectNodeAndWaitForStyles("inspected", next);
- },
-
- function testDumpStyles(next)
- {
- InspectorTest.dumpSelectedElementStyles(true);
- next();
- }
- ]);
-}
-</script>
-</head>
-
-<body onload="runTest()">
-<p>
-Tests that source data is extracted correctly from stylesheets with @-webkit-keyframes rules.
-</p>
-
-<div id="inspected" style="background-color: white;">Content</div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698