| Index: chrome/test/functional/perf.py
|
| diff --git a/chrome/test/functional/perf.py b/chrome/test/functional/perf.py
|
| index 6cb7692ff153998292f8513d3c6d0f343bf87335..35dd6617b3457ea0a991e7566ca2d3105c77ca35 100755
|
| --- a/chrome/test/functional/perf.py
|
| +++ b/chrome/test/functional/perf.py
|
| @@ -492,8 +492,9 @@ class LiveWebappLoadTest(BasePerfTest):
|
| js = """
|
| var divs = document.getElementsByTagName("div");
|
| for (var i = 0; i < divs.length; ++i) {
|
| - if (divs[i].hasOwnProperty("title") &&
|
| - divs[i].title.indexOf("%s") == 0)
|
| + if (divs[i].hasOwnProperty("dataset") &&
|
| + divs[i].dataset.hasOwnProperty("tooltip") &&
|
| + divs[i].dataset.tooltip.indexOf("%s") == 0)
|
| window.domAutomationController.send("true");
|
| }
|
| window.domAutomationController.send("false");
|
|
|