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

Unified Diff: LayoutTests/inspector/elements/styles/styles-should-not-force-sync-style-recalc.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/styles-should-not-force-sync-style-recalc.html
diff --git a/LayoutTests/inspector/elements/styles/styles-should-not-force-sync-style-recalc.html b/LayoutTests/inspector/elements/styles/styles-should-not-force-sync-style-recalc.html
deleted file mode 100644
index 5e5fb51e3986274f41b136f4bcf41749e0821d7f..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector/elements/styles/styles-should-not-force-sync-style-recalc.html
+++ /dev/null
@@ -1,51 +0,0 @@
-<html>
-<head>
-<script src="../../../http/tests/inspector/inspector-test.js"></script>
-<script src="../../../http/tests/inspector/timeline-test.js"></script>
-
-<style id="testSheet">
-.test-0 { font-family: 'Arial'; }
-.test-1 { font-family: 'Arial'; }
-.test-2 { font-family: 'Arial'; }
-.test-3 { font-family: 'Arial'; }
-.test-4 { font-family: 'Arial'; }
-.test-5 { font-family: 'Arial'; }
-.test-6 { font-family: 'Arial'; }
-.test-7 { font-family: 'Arial'; }
-.test-8 { font-family: 'Arial'; }
-.test-9 { font-family: 'Arial'; }
-</style>
-
-<script>
-
-function performActions()
-{
- var styleElement = document.querySelector("#testSheet");
- for (var i = 0; i < 10; ++i)
- styleElement.sheet.deleteRule(0);
-}
-
-function test()
-{
- InspectorTest.evaluateWithTimeline("performActions()", callback);
-
- function callback()
- {
- InspectorTest.printTimelineRecords("", function(record) {
- if (record.type() === "UpdateLayoutTree")
- InspectorTest.addResult(record.type());
- });
- InspectorTest.completeTest();
- }
-}
-
-</script>
-</head>
-
-<body onload="runTest()">
-<p>
-Tests that inspector doesn't force sync layout on operations with CSSOM.<a href="https://code.google.com/p/chromium/issues/detail?id=315885">Bug 315885</a>.
-</p>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698