| 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>
|
|
|