Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / elements / edit / edit-style-attribute.html
blob591977bc1abeeffd56eac69a59696844ea24703b
1 <html>
2 <head>
3 <script src="../../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../../http/tests/inspector/elements-test.js"></script>
5 <script>
7 function testSetNewValue()
9 document.getElementById("node-set-new-value").style.setProperty("color", "blue");
12 function testSetSameValue()
14 document.getElementById("node-set-same-value").style.setProperty("color", "red");
17 function test()
19 // Save time on style updates.
20 WebInspector.StylesSidebarPane.prototype.update = function() {};
21 WebInspector.MetricsSidebarPane.prototype.update = function() {};
23 InspectorTest.runTestSuite([
24 function testSetUp(next)
26 InspectorTest.expandElementsTree(next);
29 function testSetNewValue(next)
31 InspectorTest.evaluateInPage("testSetNewValue()");
33 InspectorTest.domModel.addEventListener(WebInspector.DOMModel.Events.AttrModified, listener);
34 function listener(event)
36 InspectorTest.addResult("WebInspector.DOMModel.Events.AttrModified should be issued");
37 InspectorTest.domModel.removeEventListener(WebInspector.DOMModel.Events.AttrModified, listener);
38 next();
42 function testSetSameValue(next)
44 InspectorTest.evaluateInPage("testSetSameValue()", next);
46 InspectorTest.domModel.addEventListener(WebInspector.DOMModel.Events.AttrModified, listener);
47 function listener(event)
49 InspectorTest.addResult("WebInspector.DOMModel.Events.AttrModified should not be issued");
50 InspectorTest.domModel.removeEventListener(WebInspector.DOMModel.Events.AttrModified, listener);
53 ]);
56 </script>
57 </head>
59 <body onload="runTest()">
60 <p>
61 Tests that style modification generates attribute updated event only when attribute is actually changed.
62 </p>
64 <div id="container">
65 <div id="node-set-new-value" style="color:red"></div>
66 <div id="node-set-same-value" style="color:red"></div>
67 </div>
68 </body>
69 </html>