2 <svg xmlns=
"http://www.w3.org/2000/svg">
4 <html xmlns=
"http://www.w3.org/1999/xhtml">
6 <script src=
"../../../http/tests/inspector/inspector-test.js"></script>
7 <script src=
"../../../http/tests/inspector/elements-test.js"></script>
14 InspectorTest.runTestSuite([
15 function testDumpInitial(next)
17 function callback(node)
22 InspectorTest.selectNodeWithId(
"node", callback);
25 function testSetAttributeText(next)
27 function callback(error)
31 targetNode.setAttribute(
"foo",
"foo2='baz2' foo3='baz3'", callback);
39 <body onload=
"runTest()">
41 Tests that elements panel updates dom tree structure upon setting attribute on non HTML elements. PASSes if there is no crash.