Index: third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/textfieldselection/select-event.html |
diff --git a/third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/textfieldselection/select-event.html b/third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/textfieldselection/select-event.html |
index 0582d9640f04d297b2fda67ce16c50fc329039ec..b658bd44d3ecabd85fa700f723d1ddf74eebc546 100644 |
--- a/third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/textfieldselection/select-event.html |
+++ b/third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/textfieldselection/select-event.html |
@@ -1,5 +1,6 @@ |
<!DOCTYPE html> |
<meta charset=utf-8> |
+<meta name="timeout" content="long"> |
<title>text field selection: select()</title> |
<link rel="author" title="Domenic Denicola" href="mailto:d@domenic.me"> |
<link rel=help href="https://html.spec.whatwg.org/multipage/#textFieldSelection"> |
@@ -34,7 +35,7 @@ const actions = [ |
}, |
{ |
label: "selectionDirection", |
- action: el => el.selectionDirection = "right" |
+ action: el => el.selectionDirection = "backward" |
}, |
{ |
label: "setSelectionRange()", |
@@ -75,7 +76,7 @@ for (const el of els) { |
t.step_timeout(() => { |
el.onselect = null; |
resolve(); |
- }, 300); |
+ }, 100); |
}); |
}, `${elLabel}: ${action.label} a second time (must not fire select)`); |
} |