| Index: third_party/WebKit/LayoutTests/inspector-enabled/sources/debugger/linkifier.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector-enabled/sources/debugger/linkifier.html b/third_party/WebKit/LayoutTests/inspector-enabled/sources/debugger/linkifier.html
|
| index f0dff031bb613d72223d7f8434a46e9fa7eac2db..403ad5db62f014c70ce22ac140ee63b08722cc48 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector-enabled/sources/debugger/linkifier.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector-enabled/sources/debugger/linkifier.html
|
| @@ -57,8 +57,9 @@ function test()
|
| var fragment = Components.linkifyStringAsFragment(linkifyMe);
|
| var anchor = fragment.querySelector('a');
|
| InspectorTest.addResult("The string \"" + linkifyMe + " \" linkifies to url: " + anchor.href);
|
| - InspectorTest.addResult("The lineNumber is " + anchor.lineNumber + " with type " + (typeof anchor.lineNumber));
|
| - InspectorTest.addResult("The columnNumber is " + anchor.columnNumber + " with type " + (typeof anchor.columnNumber));
|
| + var info = Components.Linkifier._linkInfo(anchor);
|
| + InspectorTest.addResult("The lineNumber is " + (info && info.lineNumber));
|
| + InspectorTest.addResult("The columnNumber is " + (info && info.columnNumber));
|
|
|
| linkifier = new Components.Linkifier();
|
| var count1 = liveLocationsCount();
|
|
|