| Index: LayoutTests/inspector/elements/highlight-css-shapes-outside-scroll.html
|
| diff --git a/LayoutTests/inspector/elements/highlight-css-shapes-outside-scroll.html b/LayoutTests/inspector/elements/highlight-css-shapes-outside-scroll.html
|
| index 929c7a5e3ac713b0a005c9b8919635adda4fb7ae..ea59ea40125fb383864c87247c07340d5b8a4c13 100644
|
| --- a/LayoutTests/inspector/elements/highlight-css-shapes-outside-scroll.html
|
| +++ b/LayoutTests/inspector/elements/highlight-css-shapes-outside-scroll.html
|
| @@ -25,21 +25,17 @@
|
| function test()
|
| {
|
| var i = 0;
|
| - function selectNode()
|
| + function dump()
|
| {
|
| - InspectorTest.selectNodeWithId('circle', evaluate);
|
| - }
|
| - function evaluate(node)
|
| - {
|
| - InspectorTest.dumpInspectorHighlightShape(node, i == 0 ? scroll: InspectorTest.completeTest.bind(InspectorTest));
|
| + InspectorTest.dumpInspectorHighlightJSON("circle", i == 0 ? scroll : InspectorTest.completeTest.bind(InspectorTest));
|
| }
|
| function scroll()
|
| {
|
| window.scrollTo(0, 100);
|
| ++i;
|
| - selectNode();
|
| + dump();
|
| }
|
| - selectNode();
|
| + dump();
|
| }
|
|
|
| </script>
|
|
|