| Index: tools/testing/run_selenium.py
|
| diff --git a/tools/testing/run_selenium.py b/tools/testing/run_selenium.py
|
| index 45342e0a175675c5673def92ac99a85c12f7ca7a..a95f4c6ebacfe59e560a8ce7226b1ab95988ccbd 100755
|
| --- a/tools/testing/run_selenium.py
|
| +++ b/tools/testing/run_selenium.py
|
| @@ -144,6 +144,9 @@ def start_browser(browser, executable_path, html_out):
|
| dartium_dir = os.path.join(script_dir, '..', '..', 'client', 'tests',
|
| 'dartium')
|
| options = selenium.webdriver.chrome.options.Options()
|
| + # enable ShadowDOM and style scoped for Dartium
|
| + options.add_argument('--enable-shadow-dom')
|
| + options.add_argument('--enable-style-scoped')
|
| if executable_path is not None:
|
| options.binary_location = executable_path
|
| elif platform.system() == 'Windows':
|
|
|