diff --git a/testing/web-platform/tests/css/css-masking/clip-path-svg-content/clip-path-shape-inset-001.svg b/testing/web-platform/tests/css/css-masking/clip-path-svg-content/clip-path-shape-inset-001.svg index 20cc2ea9cdef7..bc8a4d810edf3 100644 --- a/testing/web-platform/tests/css/css-masking/clip-path-svg-content/clip-path-shape-inset-001.svg +++ b/testing/web-platform/tests/css/css-masking/clip-path-svg-content/clip-path-shape-inset-001.svg @@ -5,8 +5,8 @@ + svg - A basic shape function inset() applied to an SVG rectangle. Percentage values are relative to a reference box. If not reference box was specified the objectBoundingBox is used. The inset used diff --git a/testing/web-platform/tests/css/css-masking/clip-path-svg-content/clip-path-shape-inset-002.svg b/testing/web-platform/tests/css/css-masking/clip-path-svg-content/clip-path-shape-inset-002.svg index 315c1880290c7..5e5b18990598e 100644 --- a/testing/web-platform/tests/css/css-masking/clip-path-svg-content/clip-path-shape-inset-002.svg +++ b/testing/web-platform/tests/css/css-masking/clip-path-svg-content/clip-path-shape-inset-002.svg @@ -5,8 +5,8 @@ + svg - A basic shape function inset() applied to an SVG rectangle. The inset used per side is specified by the first 20px argument. The second 20px specify the border radius. You should see a green square diff --git a/testing/web-platform/tests/shadow-dom/focus-navigation/resources/focus-utils.js b/testing/web-platform/tests/shadow-dom/focus-navigation/resources/focus-utils.js index c23581a15ecf2..0cd4fd26f494e 100644 --- a/testing/web-platform/tests/shadow-dom/focus-navigation/resources/focus-utils.js +++ b/testing/web-platform/tests/shadow-dom/focus-navigation/resources/focus-utils.js @@ -1,10 +1,8 @@ 'use strict'; -async function navigateFocusForward() { - return new test_driver.Actions() - .keyDown('\uE004') - .keyUp('\uE004') - .send(); +function navigateFocusForward() { + // TAB = '\ue004' + return test_driver.send_keys(document.body, "\ue004"); } async function navigateFocusBackward() { @@ -150,4 +148,4 @@ async function assert_focus_navigation_forward_with_shadow_root(elements) { async function assert_focus_navigation_backward_with_shadow_root(elements) { return assert_focus_navigation_elements_with_shadow_root(elements, 'backward'); -} \ No newline at end of file +}