| Index: tools/telemetry/telemetry/core/backends/chrome_inspector/inspector_runtime_unittest.py
|
| diff --git a/tools/telemetry/telemetry/core/backends/chrome_inspector/inspector_runtime_unittest.py b/tools/telemetry/telemetry/core/backends/chrome_inspector/inspector_runtime_unittest.py
|
| index 14c060ad683b62f5dedbcd3f8e3d527f7994ed0d..001a02dfd26f629466429c3e22e420c6fc1064a4 100644
|
| --- a/tools/telemetry/telemetry/core/backends/chrome_inspector/inspector_runtime_unittest.py
|
| +++ b/tools/telemetry/telemetry/core/backends/chrome_inspector/inspector_runtime_unittest.py
|
| @@ -2,6 +2,7 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| +from telemetry import decorators
|
| from telemetry.core import exceptions
|
| from telemetry.core import util
|
| from telemetry.unittest_util import tab_test_case
|
| @@ -33,6 +34,7 @@ class InspectorRuntimeTest(tab_test_case.TabTestCase):
|
| def testRuntimeExecuteOfSomethingThatCantJSONize(self):
|
| self._tab.ExecuteJavaScript('window')
|
|
|
| + @decorators.Disabled('chromeos') # crbug.com/483212
|
| def testIFrame(self):
|
| starting_contexts = self._tab.EnableAllContexts()
|
|
|
|
|