haikuwebkit/LayoutTests/fast/forms
Aditya Keerthi b768dd1774 REGRESSION (r273072): Caps lock indicator in password field is too large
https://bugs.webkit.org/show_bug.cgi?id=228970
rdar://81546781

Reviewed by Wenson Hsieh.

Source/WebCore:

r273072 made it so that flex items with an intrinsic size will honor
their aspect ratio when computing their content size. Prior to the
change, in taller password fields, the flex item representing the caps
lock indicator would be tall and narrow. The height would stretch to
fill the container, but the width would maintain its intrinsic width of
17px. Now that aspect ratio is accounted for, the width increases to
match the height, resulting in a much larger indicator in taller password
fields.

However, while r273072 regressed the appearance of the caps lock
indicator, it merely exposed an issue with the styling of the indicator.

Consider the following test case, which is a reduced version how the
caps lock indicator is styled:

<div style="display: flex; height: 100px">
    <div style="content: url(17_x_17_blue_square.svg); align-self: stretch;"></div>
</div>

Prior to r273072, this displayed a 17x17 blue square (inside a 17x100
flex item). However, in Chrome, Firefox, and WebKit after r273072, this
shows a 100x100 blue square (inside a 100x100 flex item). This is the
expected behavior now that aspect ratio is accounted for.

Consequently, to fix the issue, the width of the indicator must be
limited to a maximum value. 17px was chosen to be the max-width, as the
indicator's width would not exceed 17px prior to r273072.

Test: fast/forms/caps-lock-indicator-width.html

* css/html.css:
(input::-webkit-caps-lock-indicator):

LayoutTests:

Added a layout test to verify that the width of the caps lock indicator
adapts to the height of the password field, but does not exceed a
maximum width.

The added test is skipped on WK1, since DumpRenderTree does not support
toggling caps lock state. Implementing the testing hook in DRT is made
difficult by the fact that, in WK1, the caps lock state is queried
directly from the OS, using GetCurrentKeyModifiers.

* fast/forms/caps-lock-indicator-width-expected.txt: Added.
* fast/forms/caps-lock-indicator-width.html: Added.
* platform/ios-wk1/TestExpectations:
* platform/mac-wk1/TestExpectations:


Canonical link: https://commits.webkit.org/240445@main
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@280927 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2021-08-11 20:19:33 +00:00
..
auto-fill-button Text form controls can scroll by 1px when value is the same length as size. No scrolling should happen. 2020-06-16 02:17:00 +00:00
color Value of a color input does not update visually when using setAttribute 2021-05-20 13:21:40 +00:00
datalist [iOS][FCR] Enable the new appearance by default 2021-02-19 19:44:03 +00:00
date [iOS][FCR] Add borders for better control visibility 2021-04-27 20:28:09 +00:00
datetimelocal [macOS] Return key binding for date inputs conflicts with return to submit form 2021-02-08 16:42:11 +00:00
fieldset [Testing] Rename test header commands to match names in WebPreferences*.yaml 2020-10-13 17:16:15 +00:00
file Port Filesystem::fileMetadata() & Filesystem::getFileModificationTime() to std::filesystem 2021-05-07 05:00:39 +00:00
hidden
image
ios [iOS] <select> picker value committed to incorrect element after programmatic focus change 2021-07-28 20:21:30 +00:00
label [Testing] Rename test header commands to match names in WebPreferences*.yaml 2020-10-13 17:16:15 +00:00
legend
mailto Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
month [macOS] Return key binding for date inputs conflicts with return to submit form 2021-02-08 16:42:11 +00:00
number Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
radio Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
range REGRESSION(r266695) Range control with custom track width sized incorrectly 2021-01-19 22:15:10 +00:00
resources [LayoutTess] Delete unused LayoutTests/fast resources 2021-05-25 19:32:08 +00:00
search Remove unneeded whitespace between content and <br> 2020-10-25 19:52:34 +00:00
select Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
text
textarea REGRESSION(r274812): Release assert in Document::updateLayout() after calling focus({preventScroll: true}) on a textarea 2021-04-07 07:42:44 +00:00
time [iOS][FCR] Add borders for better control visibility 2021-04-27 20:28:09 +00:00
watchos Use PUICQuickboardController for text input when HAVE(QUICKBOARD_CONTROLLER) is defined 2021-03-26 23:12:25 +00:00
week <input type="datetime-local"> not show calendar UI when it's inside ShadowDOM 2020-10-07 04:03:49 +00:00
001.html
002-expected.txt
002.html
003.html
004.html
005-expected.txt
005.html
006.html
007.html
8250-expected.txt
8250.html
11423-expected.txt
11423.html
25153-expected.txt
25153.html
4628409-expected.txt
4628409.html
HTMLOptionElement_label01-expected.html
HTMLOptionElement_label01.html
HTMLOptionElement_label02-expected.html
HTMLOptionElement_label02.html
HTMLOptionElement_label03-expected.html
HTMLOptionElement_label03.html
HTMLOptionElement_label04-expected.html
HTMLOptionElement_label04.html
HTMLOptionElement_label05-expected.html
HTMLOptionElement_label05.html
HTMLOptionElement_label06-expected.html
HTMLOptionElement_label06.html
HTMLOptionElement_label07-expected.html
HTMLOptionElement_label07.html
HTMLOptionElement_selected-expected.txt
HTMLOptionElement_selected.html
HTMLOptionElement_selected2-expected.txt
HTMLOptionElement_selected2.html
HTMLOptionElement_selected3-expected.txt
HTMLOptionElement_selected3.html
ValidityState-001-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
ValidityState-001.html [Testing] Rename test header commands to match names in WebPreferences*.yaml 2020-10-13 17:16:15 +00:00
ValidityState-002-expected.txt
ValidityState-002.html
ValidityState-customError-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
ValidityState-customError.html
ValidityState-patternMismatch-expected.txt [YARR] Interpreter incorrectly matches non-BMP characters with multiple . 2021-03-22 22:06:52 +00:00
ValidityState-patternMismatch-unsupported-expected.txt
ValidityState-patternMismatch-unsupported.html
ValidityState-patternMismatch.html [YARR] Interpreter incorrectly matches non-BMP characters with multiple . 2021-03-22 22:06:52 +00:00
ValidityState-rangeOverflow-expected.txt
ValidityState-rangeOverflow.html
ValidityState-rangeUnderflow-expected.txt
ValidityState-rangeUnderflow.html
ValidityState-removed-control-expected.txt
ValidityState-removed-control.html
ValidityState-stepMismatch-expected.txt
ValidityState-stepMismatch.html
ValidityState-tooLong-input-expected.txt
ValidityState-tooLong-input.html
ValidityState-tooLong-textarea-expected.txt 2011-05-19 Kent Tamura <tkent@chromium.org> 2011-05-19 09:50:07 +00:00
ValidityState-tooLong-textarea.html
ValidityState-typeMismatch-email-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
ValidityState-typeMismatch-email.html
ValidityState-typeMismatch-url-expected.txt
ValidityState-typeMismatch-url.html
ValidityState-valueMissing-001-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
ValidityState-valueMissing-001.html
ValidityState-valueMissing-002-expected.txt
ValidityState-valueMissing-002.html
ValidityState-valueMissing-003-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
ValidityState-valueMissing-003.html
ValidityState-valueMissing-004-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
ValidityState-valueMissing-004.html
ValidityState-valueMissing-005-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
ValidityState-valueMissing-005.html
ValidityState-valueMissing-006-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
ValidityState-valueMissing-006.html
ValidityState-valueMissing-008-expected.txt
ValidityState-valueMissing-008.html
ValidityState-valueMissing-009-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
ValidityState-valueMissing-009.html
absolute-positioned-custom-search-cancel-crash-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
absolute-positioned-custom-search-cancel-crash.html
access-key-case-insensitive-expected.txt
access-key-case-insensitive.html
access-key-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
access-key-for-all-elements-expected.txt
access-key-for-all-elements.html
access-key-label-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
access-key-label.html
access-key-mutated-expected.txt
access-key-mutated.html
access-key-mutation-2-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
access-key-mutation-2.html
access-key-shadow-and-ordering-expected.txt
access-key-shadow-and-ordering.html
access-key.html
activate-and-disabled-elements-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
activate-and-disabled-elements.html
add-and-remove-option-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
add-and-remove-option.html
add-remove-form-elements-stress-test-expected.txt
add-remove-form-elements-stress-test.html
add-remove-option-modification-event-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
add-remove-option-modification-event.html
add-selected-option-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
add-selected-option.html
append-children-during-form-submission-expected.txt
append-children-during-form-submission.html
assert-on-input-type-change-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
assert-on-input-type-change.html
attributed-strings-expected.txt
attributed-strings.html
autocomplete-expected.txt
autocomplete-off-with-default-value-does-not-clear-expected.txt
autocomplete-off-with-default-value-does-not-clear.html [Testing] Rename test header commands to match names in WebPreferences*.yaml 2020-10-13 17:16:15 +00:00
autocomplete-tokens-expected.txt
autocomplete-tokens.html
autocomplete.html
autofocus-attribute-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
autofocus-attribute.html
autofocus-focus-only-once-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
autofocus-focus-only-once.html
autofocus-in-sandbox-with-allow-scripts-expected.txt Disallow alert/confirm/prompt in cross-origin-domain subframes 2021-02-09 21:21:26 +00:00
autofocus-in-sandbox-with-allow-scripts.html Disallow alert/confirm/prompt in cross-origin-domain subframes 2021-02-09 21:21:26 +00:00
autofocus-input-css-style-change-expected.txt
autofocus-input-css-style-change.html
autofocus-keygen-expected.txt
autofocus-keygen.html [Testing] Rename test header commands to match names in WebPreferences*.yaml 2020-10-13 17:16:15 +00:00
autofocus-opera-001-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
autofocus-opera-001.html
autofocus-opera-002-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
autofocus-opera-002.html
autofocus-opera-003-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
autofocus-opera-003.html
autofocus-opera-004-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
autofocus-opera-004.html
autofocus-opera-005-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
autofocus-opera-005.html
autofocus-opera-006-expected.txt
autofocus-opera-006.html
autofocus-opera-007-expected.txt
autofocus-opera-007.html
autofocus-opera-008-expected.txt
autofocus-opera-008.html
autofocus-readonly-attribute-expected.txt
autofocus-readonly-attribute.html
baseline-of-number-inputs-expected.html
baseline-of-number-inputs.html
basic-buttons.html Remove unneeded whitespace between content and <br> 2020-10-26 13:28:38 +00:00
basic-inputs.html Remove unneeded whitespace between content and <br> 2020-10-25 19:52:34 +00:00
basic-selects.html Remove unneeded whitespace between content and <br> 2020-10-25 19:52:34 +00:00
basic-textareas-quirks-simple-lines-expected.html
basic-textareas-quirks-simple-lines.html
basic-textareas-quirks.html
basic-textareas-simple-lines-expected.html
basic-textareas-simple-lines.html
basic-textareas.html
blankbuttons.html
border-color-relayout-expected.html
border-color-relayout.html
box-shadow-override.html
button-align.html Remove unneeded whitespace between content and <br> 2020-10-25 19:52:34 +00:00
button-cannot-be-nested.html
button-click-DOM-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
button-click-DOM.html
button-default-title.html
button-enter-click-expected.txt
button-enter-click.html
button-first-line-first-letter-expected.html
button-first-line-first-letter.html
button-generated-content.html Remove unneeded whitespace between content and <br> 2020-10-25 19:52:34 +00:00
button-in-forms-collection-expected.txt
button-in-forms-collection.html
button-inner-block-reuse-expected.txt
button-inner-block-reuse.html
button-line-height-expected.html
button-line-height.html
button-multiline-height-expected.txt [iOS] <button> with multi-line content does not render properly 2020-12-01 20:57:09 +00:00
button-multiline-height.html [iOS] <button> with multi-line content does not render properly 2020-12-01 20:57:09 +00:00
button-positioned.html
button-set-display-flex-justifyContent-center-expected.html [iOS][FCR] Enable the new appearance by default 2021-02-19 19:44:03 +00:00
button-set-display-flex-justifyContent-center.html [iOS][FCR] Enable the new appearance by default 2021-02-19 19:44:03 +00:00
button-set-text-crash-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
button-set-text-crash.html
button-sizes.html
button-spacebar-click-expected.txt
button-spacebar-click.html
button-state-restore-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
button-state-restore.html
button-style-color.html
button-submit.html
button-table-styles.html Remove unneeded whitespace between content and <br> 2020-10-25 19:52:34 +00:00
button-text-transform.html
button-white-space.html
button-with-float-expected.html
button-with-float.html
call-text-did-change-in-text-field-when-typing-expected.txt REGRESSION: [ iOS wk2 Debug ] fast/forms/call-text-did-change-in-text-field-when-typing.html is flaky failing. 2020-06-16 00:20:44 +00:00
call-text-did-change-in-text-field-when-typing.html REGRESSION: [ iOS wk2 Debug ] fast/forms/call-text-did-change-in-text-field-when-typing.html is flaky failing. 2020-06-16 00:20:44 +00:00
caps-lock-indicator-width-expected.txt REGRESSION (r273072): Caps lock indicator in password field is too large 2021-08-11 20:19:33 +00:00
caps-lock-indicator-width.html REGRESSION (r273072): Caps lock indicator in password field is too large 2021-08-11 20:19:33 +00:00
caret-rtl.html Remove unneeded whitespace between content and <br> 2020-10-25 19:52:34 +00:00
change-form-element-document-crash-expected.txt
change-form-element-document-crash.html
change-form-id-to-be-unique-expected.txt
change-form-id-to-be-unique-then-submit-form-expected.txt Form control may be associated with the wrong HTML Form element after form id change 2015-04-28 00:03:55 +00:00
change-form-id-to-be-unique-then-submit-form.html
change-form-id-to-be-unique.html
change-input-type-and-submit-form-crash-expected.txt
change-input-type-and-submit-form-crash.html
change-input-type-in-focus-handler-expected.txt
change-input-type-in-focus-handler.html
change-inputmode-crash-expected.txt
change-inputmode-crash.html
checkValidity-001-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
checkValidity-001.html [Testing] Rename test header commands to match names in WebPreferences*.yaml 2020-10-13 17:16:15 +00:00
checkValidity-002-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
checkValidity-002.html
checkValidity-003-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
checkValidity-003.html
checkValidity-004-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
checkValidity-004.html
checkValidity-cancel-expected.txt
checkValidity-cancel.html
checkValidity-cloneNode-crash-expected.txt
checkValidity-cloneNode-crash.html
checkValidity-handler-updates-dom-expected.txt
checkValidity-handler-updates-dom.html
checkbox-and-pseudo.html Skip shadow-root creation for input element if it is not necessary 2021-06-20 10:53:42 +00:00
checkbox-appearance-change-by-checked-expected.html
checkbox-appearance-change-by-checked.html
checkbox-child-hidden-expected.html Skip shadow-root creation for input element if it is not necessary 2021-06-20 10:53:42 +00:00
checkbox-child-hidden.html Skip shadow-root creation for input element if it is not necessary 2021-06-20 10:53:42 +00:00
checkbox-click-indeterminate-expected.txt 2011-06-19 Keishi Hattori <keishi@webkit.org> 2011-06-20 04:47:20 +00:00
checkbox-click-indeterminate.html
checkbox-default-value-expected.txt
checkbox-default-value.html
checkbox-empty-size-expected.txt
checkbox-empty-size.html
checkbox-onchange-expected.txt
checkbox-onchange.html
checkbox-painting-with-hr-expected.html
checkbox-painting-with-hr.html
clone-input-with-dirty-value-expected.txt
clone-input-with-dirty-value.html
content-with-margins-inside-button-expected.html
content-with-margins-inside-button.html
contenteditable-font-optical-size-expected.txt [iOS] fast/forms/contenteditable-font-optical-size.html landed flaky 2020-01-14 21:23:18 +00:00
contenteditable-font-optical-size.html
control-clip-overflow.html
control-clip.html
control-detach-crash-expected.txt
control-detach-crash.html
control-restrict-line-height.html Remove unneeded whitespace between content and <br> 2020-10-25 19:52:34 +00:00
cursor-at-editable-content-boundary-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
cursor-at-editable-content-boundary.html
cursor-position-expected.txt
cursor-position.html
dangling-form-element-crash-expected.txt
dangling-form-element-crash.html
defaultValue-clobbering-expected.txt Text gets clobbered when assigning to input.defaultValue 2020-11-06 20:17:03 +00:00
defaultValue-clobbering.html Text gets clobbered when assigning to input.defaultValue 2020-11-06 20:17:03 +00:00
defer-updateFromElement-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
defer-updateFromElement.html
delete-text-with-invisible-br-expected.txt
delete-text-with-invisible-br.html
disabled-attr-checkvalidity-expected.txt
disabled-attr-checkvalidity.html
disabled-mousedown-event-expected.txt
disabled-mousedown-event.html
disabled-search-input-expected.txt
disabled-search-input.html
disabled-select-change-index.html
display-none-in-onchange-keyboard-expected.txt
display-none-in-onchange-keyboard.html
document-write-empty-expected.txt
document-write-empty.html
document-write-expected.txt
document-write.html
domstring-replace-crash-expected.txt
domstring-replace-crash.html
double-focus-expected.txt
double-focus.html
drag-into-textarea-expected.txt LayoutTests: 2007-05-24 01:11:10 +00:00
drag-into-textarea.html
drag-out-of-textarea-expected.txt
drag-out-of-textarea.html
element-by-name-expected.txt
element-by-name.html
element-order-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
element-order.html
elements-invalidate-on-form-attribute-invalidation-expected.txt
elements-invalidate-on-form-attribute-invalidation.html
empty-get-expected.txt
empty-get.html
empty-textarea-toggle-disabled-expected.txt
empty-textarea-toggle-disabled.html
encoding-test.html
enctype-attribute-expected.txt
enctype-attribute.html
enter-clicks-buttons-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
enter-clicks-buttons.html
enterkeyhint-attribute-values-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
enterkeyhint-attribute-values.html
fallback-content-submission-expected.txt
fallback-content-submission.html
fieldset-align.html
fieldset-legend-padding-unclipped-fieldset-border-expected.txt
fieldset-legend-padding-unclipped-fieldset-border.html
fieldset-pseudo-valid-style-expected.txt
fieldset-pseudo-valid-style.html
fieldset-width-nostretch-ifspecified-expected.html
fieldset-width-nostretch-ifspecified.html
fieldset-with-float-expected.txt
fieldset-with-float.html
float-before-fieldset.html
floating-textfield-relayout.html
focus-after-visibility-change-expected.txt
focus-after-visibility-change.html
focus-change-after-layout-update-during-focus-crash-expected.txt [iOS] Crash when tapping fields on cycle.travel 2021-05-03 15:58:26 +00:00
focus-change-after-layout-update-during-focus-crash.html [iOS] Crash when tapping fields on cycle.travel 2021-05-03 15:58:26 +00:00
focus-change-on-keypress-expected.txt
focus-change-on-keypress.html
focus-control-to-page-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
focus-control-to-page.html Use testRunner instead of layoutTestController in fast/fast-mobile-scrolling, flexbox, forms, frames, gradients tests 2012-06-22 06:52:33 +00:00
focus-expected.txt
focus-option-control-on-page-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
focus-option-control-on-page.html
focus-selection-input-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
focus-selection-input.html
focus-selection-textarea-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
focus-selection-textarea.html
focus-style-pending-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
focus-style-pending.html
focus-with-display-block-expected.txt
focus-with-display-block.html
focus.html
focus2-expected.txt
focus2.html
form-action-expected.txt
form-action.html
form-added-to-table.html
form-and-frame-interaction-retains-values-expected.txt
form-and-frame-interaction-retains-values.html
form-associated-element-crash-expected.txt
form-associated-element-crash.html
form-associated-element-crash2-expected.txt
form-associated-element-crash2.html
form-associated-element-crash3-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
form-associated-element-crash3.html [Testing] Rename test header commands to match names in WebPreferences*.yaml 2020-10-13 17:16:15 +00:00
form-associated-element-removal-expected.txt
form-associated-element-removal.html
form-attribute-elements-expected.txt
form-attribute-elements-order-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
form-attribute-elements-order.html
form-attribute-elements-order2-expected.txt
form-attribute-elements-order2.html
form-attribute-elements.html
form-attribute-expected.txt
form-attribute-nonexistence-form-id-expected.txt Align HTMLLabelElement.prototype.form with the HTML specification 2016-09-23 21:46:27 +00:00
form-attribute-nonexistence-form-id.html
form-attribute-not-in-document-expected.txt
form-attribute-not-in-document.html
form-attribute.html [Testing] Rename test header commands to match names in WebPreferences*.yaml 2020-10-13 17:16:15 +00:00
form-collection-elements-expected.txt
form-collection-elements-order-expected.txt
form-collection-elements-order.html [Testing] Rename test header commands to match names in WebPreferences*.yaml 2020-10-13 17:16:15 +00:00
form-collection-elements.html [Testing] Rename test header commands to match names in WebPreferences*.yaml 2020-10-13 17:16:15 +00:00
form-collection-lookup-expected.txt
form-collection-lookup.html
form-collection-radio-node-list-expected.txt
form-collection-radio-node-list.html [Testing] Rename test header commands to match names in WebPreferences*.yaml 2020-10-13 17:16:15 +00:00
form-control-element-crash-expected.txt
form-control-element-crash.html
form-control-removed-while-inserting-parent-crash-expected.txt
form-control-removed-while-inserting-parent-crash.html
form-data-associated-element-iteration-expected.txt
form-data-associated-element-iteration.html
form-data-encoding-2-expected.txt
form-data-encoding-2.html Remove NFC normalization when submitting forms and encoding URL queries and fix EUC-JP encoding 2020-08-30 01:47:51 +00:00
form-data-encoding-expected.txt
form-data-encoding-normalization-overrun-expected.txt
form-data-encoding-normalization-overrun.html Use testRunner instead of layoutTestController in fast/fast-mobile-scrolling, flexbox, forms, frames, gradients tests 2012-06-22 06:52:33 +00:00
form-data-encoding.html Remove NFC normalization when submitting forms and encoding URL queries and fix EUC-JP encoding 2020-08-30 01:47:51 +00:00
form-dirname-attribute-expected.txt
form-dirname-attribute.html
form-double-submission-expected.txt
form-double-submission.html
form-element-geometry.html
form-get-multipart-expected.txt
form-get-multipart.html
form-get-multipart2-expected.txt
form-get-multipart2.html
form-get-multipart3-expected.txt
form-get-multipart3.html
form-get-textplain-expected.txt
form-get-textplain.html
form-hides-table.html
form-image-access-by-name-expected.txt
form-image-access-by-name.html
form-in-malformed-markup.html
form-input-named-arguments-expected.txt
form-input-named-arguments.html
form-post-urlencoded-expected.txt LayoutTests: 2007-05-24 01:11:10 +00:00
form-post-urlencoded.html
form-pseudo-valid-style-expected.txt
form-pseudo-valid-style.html
form-submission-crash-2-expected.txt
form-submission-crash-2.html
form-submission-crash-3-expected.txt
form-submission-crash-3.html
form-submission-crash-expected.txt
form-submission-crash-successful-submit-button-expected.txt
form-submission-crash-successful-submit-button.html
form-submission-crash.html
form-submission-create-crash-expected.txt
form-submission-create-crash.xhtml
form-submit-in-image-document-expected.txt
form-submit-in-image-document.html
form-validation.js
formaction-attribute-expected.txt
formaction-attribute-with-empty-value-expected.txt
formaction-attribute-with-empty-value.html
formaction-attribute.html
formmethod-attribute-button-html-expected.txt
formmethod-attribute-button-html.html
formmethod-attribute-input-2-expected.txt
formmethod-attribute-input-2.html
formmethod-attribute-input-html-expected.txt
formmethod-attribute-input-html.html
formmethod-attribute-test-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
formmethod-attribute-test.html
formmove.html
formmove2.html
formmove3.html
formnovalidate-attribute-expected.txt
formnovalidate-attribute.html
formsubmission-appendFormData-crash-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
formsubmission-appendFormData-crash.html
formtarget-attribute-button-html-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
formtarget-attribute-button-html.html Remove remaining alternative preference setting mechanisms from LayoutTests 2020-11-01 20:09:38 +00:00
formtarget-attribute-input-2-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
formtarget-attribute-input-2.html Remove remaining alternative preference setting mechanisms from LayoutTests 2020-11-01 20:09:38 +00:00
formtarget-attribute-input-html-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
formtarget-attribute-input-html.html Remove remaining alternative preference setting mechanisms from LayoutTests 2020-11-01 20:09:38 +00:00
get-forms-to-about-blank-expected.txt
get-forms-to-about-blank.html
hidden-input-enabled-expected.txt
hidden-input-enabled.html
hidden-listbox.html Remove unneeded whitespace between content and <br> 2020-10-25 19:52:34 +00:00
hidpi-fieldset-on-subpixel-position-when-legend-is-present-expected.html
hidpi-fieldset-on-subpixel-position-when-legend-is-present.html
hidpi-textarea-on-subpixel-position-expected.html
hidpi-textarea-on-subpixel-position.html
hidpi-textfield-background-bleeding-expected.html
hidpi-textfield-background-bleeding.html
image-border.html
image-disconnected-during-parse-expected.txt
image-disconnected-during-parse.html
implicit-submission-expected.txt
implicit-submission.html
incremental-dom-property-expected.txt
incremental-dom-property.html
indeterminate-input-types-expected.txt
indeterminate-input-types.html
indeterminate-progress-inline-height-expected.txt
indeterminate-progress-inline-height.html
indeterminate.html
inline-ignored-on-legend-expected.txt
inline-ignored-on-legend.html
input-align-image.html
input-align.html Remove unneeded whitespace between content and <br> 2020-10-25 19:52:34 +00:00
input-appearance-bkcolor.html Remove unneeded whitespace between content and <br> 2020-10-25 19:52:34 +00:00
input-appearance-default-bkcolor.html Remove unneeded whitespace between content and <br> 2020-10-25 19:52:34 +00:00
input-appearance-disabled.html Remove unneeded whitespace between content and <br> 2020-10-25 19:52:34 +00:00
input-appearance-elementFromPoint-expected.txt Update progressing layout tests on SL. 2011-03-28 20:32:23 +00:00
input-appearance-elementFromPoint.html
input-appearance-focus.html
input-appearance-height.html
input-appearance-maxlength-expected.txt
input-appearance-maxlength.html
input-appearance-preventDefault.html
input-appearance-readonly.html Remove unneeded whitespace between content and <br> 2020-10-25 19:52:34 +00:00
input-appearance-selection.html
input-appearance-spinbutton-expected.png
input-appearance-spinbutton-expected.txt
input-appearance-spinbutton-size-expected.txt Move platform/mac/fast/forms/ tests to fast/forms/ 2015-08-07 21:07:40 +00:00
input-appearance-spinbutton-size.html
input-appearance-spinbutton-up-expected.txt
input-appearance-spinbutton-up.html
input-appearance-spinbutton.html Remove unneeded whitespace between content and <br> 2020-10-27 13:27:17 +00:00
input-appearance-visibility.html
input-appearance-width.html
input-autofilled-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
input-autofilled.html
input-background-ua-media-query-expected.html REGRESSION (r232806): Facebook login fields have blue fill background instead of white 2018-06-30 03:02:24 +00:00
input-background-ua-media-query.html
input-baseline-expected.txt
input-baseline.html Remove unneeded whitespace between content and <br> 2020-10-25 19:52:34 +00:00
input-button-sizes.html
input-changing-value-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
input-changing-value.html
input-delete-expected.txt
input-delete.html
input-disabled-color.html REGRESSION (r262729): Poor contrast for specific color/background combinations on disabled input fields 2020-12-21 16:10:45 +00:00
input-disconnected-during-parse-expected.txt
input-disconnected-during-parse.html
input-double-click-selection-gap-bug.html
input-element-attach-crash-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
input-element-attach-crash.html
input-element-default-checked-setter-crash-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
input-element-default-checked-setter-crash.html
input-field-text-truncated.html
input-first-letter-edit-expected.html autofocus of text input should not select text 2020-11-09 19:08:31 +00:00
input-first-letter-edit.html autofocus of text input should not select text 2020-11-09 19:08:31 +00:00
input-first-letter.html
input-hit-test-border-expected.txt
input-hit-test-border.html
input-image-submit-expected.txt
input-image-submit.html
input-implicit-length-limit-expected.txt
input-implicit-length-limit.html
input-in-table-cell-no-value-expected.html
input-in-table-cell-no-value.html
input-live-pseudo-selectors-expected.txt
input-live-pseudo-selectors.html
input-maxlength-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
input-maxlength-ime-completed-expected.txt
input-maxlength-ime-completed.html
input-maxlength-ime-preedit-expected.txt
input-maxlength-ime-preedit.html
input-maxlength-inserting-in-middle-expected.txt REGRESSION(r164329): Input fields are not honoring the maxlength attribute 2014-12-10 22:10:23 +00:00
input-maxlength-inserting-in-middle.html
input-maxlength-paste-clusters-in-middle-expected.txt
input-maxlength-paste-clusters-in-middle.html REGRESSION(r164329): Input fields are not honoring the maxlength attribute 2014-12-10 22:10:23 +00:00
input-maxlength-paste-in-middle-expected.txt
input-maxlength-paste-in-middle.html
input-maxlength-unsupported-expected.txt
input-maxlength-unsupported.html
input-maxlength.html
input-minmax-expected.txt
input-minmax.html
input-multiple-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
input-multiple.html
input-named-action-overrides-action-attribute-expected.txt
input-named-action-overrides-action-attribute.html
input-no-renderer-expected.txt
input-no-renderer.html
input-number-click-expected.txt
input-number-click.html
input-paste-undo-expected.txt
input-paste-undo.html
input-pattern-expected.txt
input-pattern.html
input-placeholder-layout-view-expected.html
input-placeholder-layout-view.html
input-placeholder-paint-order-2-expected.html Add the unprefixed version of the pseudo element ::placeholder 2016-06-14 22:09:33 +00:00
input-placeholder-paint-order-2.html
input-placeholder-paint-order-expected.txt
input-placeholder-paint-order.html
input-placeholder-text-indent-expected.html
input-placeholder-text-indent.html
input-placeholder-visibility-1.html
input-placeholder-visibility-2-expected.html
input-placeholder-visibility-2.html
input-placeholder-visibility-3.html
input-readonly-autoscroll.html
input-readonly-dimmed.html Remove unneeded whitespace between content and <br> 2020-10-25 19:52:34 +00:00
input-readonly-empty.html
input-readonly-focus-expected.txt
input-readonly-focus.html
input-readonly-select-expected.txt
input-readonly-select.html
input-search-press-escape-key-expected.txt
input-search-press-escape-key.html
input-select-on-click-expected.txt
input-select-on-click.html
input-select-webkit-user-select-none-expected.txt
input-select-webkit-user-select-none.html
input-selection-hidden-expected.txt
input-selection-hidden.html
input-set-composition-scroll-expected.txt
input-set-composition-scroll.html
input-setvalue-selection-expected.txt
input-setvalue-selection.html
input-spaces.html Remove unneeded whitespace between content and <br> 2020-10-25 19:52:34 +00:00
input-step-as-double-expected.txt
input-step-as-double.html
input-stepup-stepdown-expected.txt
input-stepup-stepdown.html
input-table.html
input-text-autofocus-expected.txt autofocus of text input should not select text 2020-11-09 19:08:31 +00:00
input-text-autofocus.html autofocus of text input should not select text 2020-11-09 19:08:31 +00:00
input-text-click-inside.html
input-text-click-outside.html
input-text-double-click.html
input-text-drag-down.html
input-text-enter-expected.txt
input-text-enter.html
input-text-maxlength-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
input-text-maxlength.html
input-text-option-delete.html
input-text-paste-maxlength-expected.txt
input-text-paste-maxlength.html
input-text-scroll-left-on-blur.html
input-text-self-emptying-click.html
input-text-word-wrap.html
input-textarea-padding-match-expected.html
input-textarea-padding-match.html
input-type-change-during-selection-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
input-type-change-during-selection.html
input-type-change-expected.txt
input-type-change-in-onfocus-keyboard-expected.txt
input-type-change-in-onfocus-keyboard.html
input-type-change-in-onfocus-mouse-expected.txt
input-type-change-in-onfocus-mouse.html
input-type-change.html
input-type-change3-expected.txt
input-type-change3.html
input-type-text-min-width.html
input-user-input-sanitization-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
input-user-input-sanitization.html
input-user-modify-expected.txt
input-user-modify.html
input-value-sanitization-expected.txt
input-value-sanitization.html
input-value.html
input-valueasnumber-unsupported-expected.txt
input-valueasnumber-unsupported.html
input-width-height-attributes-expected.txt
input-width-height-attributes-without-renderer-expected.txt
input-width-height-attributes-without-renderer-loaded-image-expected.txt
input-width-height-attributes-without-renderer-loaded-image.html
input-width-height-attributes-without-renderer-not-loaded-image-expected.txt
input-width-height-attributes-without-renderer-not-loaded-image.html
input-width-height-attributes-without-renderer.html
input-width-height-attributes.html
input-width.html
input-widths-expected.txt
input-widths.html
input-zero-height-focus-expected.txt
input-zero-height-focus.html
input-zero-width-expected.html
input-zero-width.html
inputmode-attribute-contenteditable-expected.txt [iOS] Support inputmode=none 2018-08-28 16:34:25 +00:00
inputmode-attribute-contenteditable.html
inputmode-attribute-input-expected.txt
inputmode-attribute-input.html
inputmode-attribute-textarea-expected.txt
inputmode-attribute-textarea.html
interactive-validation-assertion-by-validate-twice-expected.txt
interactive-validation-assertion-by-validate-twice.html
interactive-validation-attach-assertion-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
interactive-validation-attach-assertion.html
interactive-validation-cancel-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
interactive-validation-cancel.html
interactive-validation-crash-by-style-override-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
interactive-validation-crash-by-style-override.html
interactive-validation-formnovalidate-2-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
interactive-validation-formnovalidate-2.html
interactive-validation-formnovalidate-child-expected.txt
interactive-validation-formnovalidate-child.html Change fast/f* files to use pre and post js files in LayoutTests/resources. 2013-09-07 23:31:07 +00:00
interactive-validation-formnovalidate-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
interactive-validation-formnovalidate.html
interactive-validation-novalidate-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
interactive-validation-novalidate.html
interactive-validation-prevented-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
interactive-validation-prevented.html
interactive-validation-remove-node-in-handler-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
interactive-validation-remove-node-in-handler.html
interactive-validation-required-checkbox-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
interactive-validation-required-checkbox.html Change fast/f* files to use pre and post js files in LayoutTests/resources. 2013-09-07 23:31:07 +00:00
interactive-validation-select-crash-expected.txt Assertion failure by form validation message for <select required> with float:left 2011-03-15 00:53:53 +00:00
interactive-validation-select-crash.html
large-parts-expected.txt
large-parts.html [Testing] Rename test header commands to match names in WebPreferences*.yaml 2020-10-13 17:16:15 +00:00
lazy-event-listener-scope-chain-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
lazy-event-listener-scope-chain.html
legend-access-key-expected.txt
legend-access-key.html
legend-after-margin-horizontal-writing-mode-expected.html
legend-after-margin-horizontal-writing-mode.html
legend-after-margin-vertical-writing-mode-expected.html
legend-after-margin-vertical-writing-mode.html
legend-after-margin-with-before-border-horizontal-mode-expected.html
legend-after-margin-with-before-border-horizontal-mode.html
legend-display-none-expected.txt
legend-display-none.html
legend-overflow-hidden-hit-test-expected.txt
legend-overflow-hidden-hit-test.html
legend-small-after-margin-before-border-horizontal-mode-expected.html
legend-small-after-margin-before-border-horizontal-mode.html
linebox-overflow-in-textarea-padding-simple-lines-expected.html
linebox-overflow-in-textarea-padding-simple-lines.html
linebox-overflow-in-textarea-padding.html
listbox-bidi-align.html
listbox-clear-restore-expected.html
listbox-clear-restore.html
listbox-clip-expected.txt
listbox-clip.html
listbox-deselect-scroll-expected.txt
listbox-deselect-scroll.html
listbox-hit-test-zoomed.html
listbox-non-contiguous-keyboard-selection-expected.txt
listbox-non-contiguous-keyboard-selection.html Cannot select multiple non-adjacent items in a multiple select control with the keyboard only 2014-01-09 17:23:48 +00:00
listbox-onchange-expected.txt
listbox-onchange.html
listbox-padding-clip-expected-mismatch.html
listbox-padding-clip-overlay-expected-mismatch.html
listbox-padding-clip-overlay.html
listbox-padding-clip-selected-expected.html
listbox-padding-clip-selected.html
listbox-padding-clip.html
listbox-respects-padding-bottom-expected.txt
listbox-respects-padding-bottom.html
listbox-scroll-after-options-removed-expected.txt
listbox-scroll-after-options-removed.html
listbox-scrollbar-hit-test-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
listbox-scrollbar-hit-test.html
listbox-scrollbar-incremental-load.html
listbox-select-all-expected.txt
listbox-select-all.html
listbox-selection-2-expected.txt
listbox-selection-2.html
listbox-selection-3-expected.txt
listbox-selection-3.html
listbox-selection-after-typeahead-expected.txt Abandoned select option is reselected when shift selecting new options 2014-10-28 18:05:30 +00:00
listbox-selection-after-typeahead.html
listbox-selection-expected.txt
listbox-selection.html
listbox-top-padding-do-not-clip-items-expected.txt
listbox-top-padding-do-not-clip-items.html
listbox-typeahead-cyrillic-expected.txt
listbox-typeahead-cyrillic.html
listbox-typeahead-empty-expected.txt
listbox-typeahead-empty.html
listbox-typeahead-greek-expected.txt
listbox-typeahead-greek.html
listbox-typeahead-scroll-expected.txt
listbox-typeahead-scroll.html
listbox-visible-size-expected.txt
listbox-visible-size.html
listbox-width-change.html Remove unneeded whitespace between content and <br> 2020-10-25 19:52:34 +00:00
match-pseudo-on-radio-before-finalizing-tree-insertion-crash-expected.txt
match-pseudo-on-radio-before-finalizing-tree-insertion-crash.html
menulist-clip.html
menulist-deselect-update.html
menulist-disabled-selected-option-expected.txt
menulist-disabled-selected-option.html
menulist-narrow-width.html
menulist-no-overflow.html
menulist-no-renderer-for-unexpected-children-expected.txt
menulist-no-renderer-for-unexpected-children.html
menulist-no-renderer-onmousedown-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
menulist-no-renderer-onmousedown.html
menulist-option-wrap.html
menulist-restrict-line-height.html
menulist-selection-reset-expected.txt
menulist-selection-reset.html
menulist-separator-painting.html
menulist-style-color.html
menulist-submit-without-selection-expected.txt
menulist-submit-without-selection.html
menulist-width-change.html
method-attribute-expected.txt
method-attribute.html
min-content-form-controls-expected.txt
min-content-form-controls.html
minWidthPercent.html
misplaced-img-form-registration-expected.txt
misplaced-img-form-registration.html
missing-action-expected.txt
missing-action.html
missing-parentrenderer-crash-expected.txt
missing-parentrenderer-crash.html
multiple-form-submission-protection-mouse-expected.txt
multiple-form-submission-protection-mouse.html Use testRunner instead of layoutTestController in fast/fast-mobile-scrolling, flexbox, forms, frames, gradients tests 2012-06-22 06:52:33 +00:00
multiple-selected-options-innerHTML-expected.txt
multiple-selected-options-innerHTML.html
multiple-subtree-layout-failure-expected.html REGRESSION (r194426): First email field is not autofilled on amazon.com 2016-01-10 00:38:56 +00:00
multiple-subtree-layout-failure.html
mutation-event-recalc-expected.txt
mutation-event-recalc.html
navigation-dismisses-validation-bubbles-expected.txt
navigation-dismisses-validation-bubbles.html
negativeLineHeight-simple-lines-expected.html Support overflow-wrap:break-word on simple line path 2013-11-13 13:25:32 +00:00
negativeLineHeight-simple-lines.html
negativeLineHeight.html
node-list-remove-button-from-form-expected.txt Invalidate node list when associated form control element is removed 2017-11-03 15:41:10 +00:00
node-list-remove-button-from-form.html
novalidate-attribute-expected.txt
novalidate-attribute.html
numeric-input-name-expected.txt
numeric-input-name.html
old-names-expected.txt
old-names.html
onchange-change-type-expected.txt
onchange-change-type.html
onchange-enter-submit-expected.txt
onchange-enter-submit.html
onchange-select-check-validity-expected.txt
onchange-select-check-validity.html
onchange-setvalueforuser-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
onchange-setvalueforuser.html
onselect-selectall-expected.txt
onselect-selectall.html
onselect-textarea-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
onselect-textarea.html
onselect-textfield-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
onselect-textfield.html
option-change-single-selected-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
option-change-single-selected.html
option-constructor-selected-expected.txt
option-constructor-selected.html
option-in-optgroup-removal-expected.txt
option-in-optgroup-removal.html
option-index.html Remove unneeded whitespace between content and <br> 2020-10-27 13:27:17 +00:00
option-label-trim-html-spaces-expected.txt
option-label-trim-html-spaces.html
option-mouseevents-expected.txt
option-mouseevents.html
option-script.html Remove unneeded whitespace between content and <br> 2020-10-25 19:52:34 +00:00
option-strip-unicode-spaces-expected.txt
option-strip-unicode-spaces.html
option-strip-whitespace.html
option-text-clip.html Remove unneeded whitespace between content and <br> 2020-10-25 19:52:34 +00:00
option-value-and-label-changed-by-js-expected.txt
option-value-and-label-changed-by-js.html
option-value-and-label-expected.txt
option-value-and-label.html
option-value-trim-html-spaces-expected.txt
option-value-trim-html-spaces.html
output-reset-assertion-failed-expected.txt
output-reset-assertion-failed.html
parser-associated-form-removal-expected.txt
parser-associated-form-removal.html
password-doubleclick-selection-expected.txt
password-doubleclick-selection.html
password-placeholder-text-security-expected.html Convert some placeholder-related tests to reftests 2011-11-28 09:37:08 +00:00
password-placeholder-text-security.html
password-scrolled-after-caps-lock-toggled-expected.txt
password-scrolled-after-caps-lock-toggled.html Implement UIScriptController::toggleCapsLock() for iOS 2018-12-17 19:19:25 +00:00
past-names-map-should-be-used-only-when-named-item-is-empty-expected.txt
past-names-map-should-be-used-only-when-named-item-is-empty.html
past-names-map-should-not-contain-disassociated-elements-expected.txt
past-names-map-should-not-contain-disassociated-elements.html
past-names-map-should-not-contain-nodelist-item-expected.txt
past-names-map-should-not-contain-nodelist-item.html
paste-into-textarea-expected.txt
paste-into-textarea.html
paste-multiline-text-input-expected.txt
paste-multiline-text-input.html
pattern-attribute-001-expected.txt
pattern-attribute-001.html
pattern-attribute-002-expected.txt
pattern-attribute-002.html
pattern-attribute-003-expected.txt
pattern-attribute-003.html
percent-height-auto-width-form-controls-expected.txt
percent-height-auto-width-form-controls.html
placeholder-and-default-value-expected.html
placeholder-and-default-value.html
placeholder-attribute-ordering-expected.html
placeholder-attribute-ordering.html
placeholder-content-center-expected.html
placeholder-content-center.html
placeholder-content-line-height-expected.html becu.org: Placeholder text "Search" is cut off 2020-03-24 04:48:49 +00:00
placeholder-content-line-height.html
placeholder-crash-with-scrollbar-corner-expected.txt
placeholder-crash-with-scrollbar-corner.html
placeholder-dom-property-expected.txt
placeholder-dom-property.html
placeholder-in-invisible-elements-expected.html
placeholder-in-invisible-elements.html
placeholder-non-textfield-expected.txt
placeholder-non-textfield.html
placeholder-position-expected.txt
placeholder-position.html
placeholder-pseudo-element-with-webkit-prefix-expected.html
placeholder-pseudo-element-with-webkit-prefix.html
placeholder-pseudo-style.html
placeholder-set-attribute-expected.html
placeholder-set-attribute.html
placeholder-set-value-expected.html
placeholder-set-value.html
placeholder-show-and-hide-via-setCanShowPlaceholder-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
placeholder-show-and-hide-via-setCanShowPlaceholder.html
placeholder-stripped-expected.txt
placeholder-stripped.html
placeholder-with-positioned-element-expected.html
placeholder-with-positioned-element.html
plaintext-mode-1-expected.txt
plaintext-mode-1.html
plaintext-mode-2.html
preserveFormDuringResidualStyle.html
programmatic-focus-after-display-expected.txt REGRESSION (r257839): clickpay.com - password placeholder text cannot be replaced 2020-09-10 19:56:07 +00:00
programmatic-focus-after-display.html REGRESSION (r257839): clickpay.com - password placeholder text cannot be replaced 2020-09-10 19:56:07 +00:00
programmatic-focus-after-displaying-parent-expected.txt REGRESSION (r257839): Can't add a memo when transferring funds in First Tech Credit Union App 2020-09-21 15:11:43 +00:00
programmatic-focus-after-displaying-parent.html REGRESSION (r257839): Can't add a memo when transferring funds in First Tech Credit Union App 2020-09-21 15:11:43 +00:00
radio-and-checkbox-checked-with-no-appearance-expected.html
radio-and-checkbox-checked-with-no-appearance.html
radio-checkbox-restore-indeterminate-expected.txt
radio-checkbox-restore-indeterminate.html
radio-input-in-shadow-root-crash-expected.txt Crash when setting HTMLInputElement.checked for a disconnected radio button in a shadow root 2019-11-15 03:26:51 +00:00
radio-input-in-shadow-root-crash.html
radionodelist-image-type-expected.txt
radionodelist-image-type.html
radionodelist-whose-form-element-detached-from-domtree-expected.txt
radionodelist-whose-form-element-detached-from-domtree.html
registerFormElement-crash-expected.txt
registerFormElement-crash.html
remove-associated-element-after-gc-expected.txt
remove-associated-element-after-gc.html
removed-image-as-property-expected.txt
removed-image-as-property.html
render-text-crash-expected.txt
render-text-crash.html
reparented-image-as-property-expected.txt
reparented-image-as-property.html
required-attribute-001-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
required-attribute-001.html
required-attribute-002-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
required-attribute-002.html
reset-autofilled-expected.txt
reset-autofilled.html
restore-selection-after-layout-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
restore-selection-after-layout.html
saved-state-adoptNode-crash-expected.txt
saved-state-adoptNode-crash.html
scroll-into-view-and-show-validation-message-expected.txt HTML form validation bubble disappears 2018-11-09 17:37:52 +00:00
scroll-into-view-and-show-validation-message.html
scrollheight-with-mutation-crash-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
scrollheight-with-mutation-crash.html [Testing] Rename test header commands to match names in WebPreferences*.yaml 2020-10-13 17:16:15 +00:00
search-abs-pos-cancel-button-expected.txt
search-abs-pos-cancel-button.html
search-cancel-button-change-input-expected.txt Correct handling of changing input type 2016-11-15 20:14:02 +00:00
search-cancel-button-change-input.html
search-cancel-button-events-expected.txt
search-cancel-button-events.html
search-cancel-button-hover-expected.html
search-cancel-button-hover.html
search-cancel-button-mouseup-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
search-cancel-button-mouseup.html
search-cancel-button-style-sharing.html
search-cancel-in-invisible-elements-expected.html
search-cancel-in-invisible-elements.html
search-click-in-placeholder-expected.txt
search-click-in-placeholder.html
search-delete-while-cancel-button-clicked-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
search-delete-while-cancel-button-clicked.html
search-disabled-readonly-expected.txt
search-disabled-readonly.html
search-display-none-cancel-button.html
search-event-delay-expected.txt
search-event-delay.html
search-field-buttons-do-not-have-focus-rings-expected.html [Windows] fast/forms/search-field-buttons-do-not-have-focus-rings.html is failing 2020-06-20 07:08:38 +00:00
search-field-buttons-do-not-have-focus-rings.html [Windows] fast/forms/search-field-buttons-do-not-have-focus-rings.html is failing 2020-06-20 07:08:38 +00:00
search-hidden-cancel-button-expected.txt
search-hidden-cancel-button.html
search-hide-cancel-on-cancel-expected.txt
search-hide-cancel-on-cancel.html
search-input-rtl-expected.txt
search-input-rtl.html
search-placeholder-value-changed-expected.html Convert some placeholder-related tests to reftests 2011-11-28 09:37:08 +00:00
search-placeholder-value-changed.html
search-rtl.html Remove unneeded whitespace between content and <br> 2020-10-25 19:52:34 +00:00
search-styled.html
search-transformed-expected.txt
search-transformed.html
search-vertical-alignment.html
search-zoomed-expected.txt
search-zoomed.html
searchfield-heights.html
select-accesskey-expected.txt
select-accesskey.html
select-align.html Remove unneeded whitespace between content and <br> 2020-10-25 19:52:34 +00:00
select-background-none.html
select-baseline.html
select-block-background.html
select-cache-desynchronization-expected.txt
select-cache-desynchronization.html
select-change-listbox-size.html
select-change-listbox-to-popup-roundtrip-expected.txt
select-change-listbox-to-popup-roundtrip.html Use testRunner instead of layoutTestController in fast/fast-mobile-scrolling, flexbox, forms, frames, gradients tests 2012-06-22 06:52:33 +00:00
select-change-listbox-to-popup.html
select-change-popup-to-listbox-in-event-handler-expected.txt
select-change-popup-to-listbox-in-event-handler.html
select-change-popup-to-listbox-roundtrip-expected.txt
select-change-popup-to-listbox-roundtrip.html Use testRunner instead of layoutTestController in fast/fast-mobile-scrolling, flexbox, forms, frames, gradients tests 2012-06-22 06:52:33 +00:00
select-change-popup-to-listbox.html Remove unneeded whitespace between content and <br> 2020-10-25 19:52:34 +00:00
select-change-size-during-focus-expected.txt
select-change-size-during-focus.html
select-clientheight-large-size-expected.txt
select-clientheight-large-size.html
select-clientheight-with-multiple-attr-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
select-clientheight-with-multiple-attr.html
select-dirty-parent-pref-widths.html
select-disabled-appearance.html
select-display-none-style-resolve.html
select-double-onchange-expected.txt
select-double-onchange.html
select-element-focus-ring.html
select-empty-list-expected.txt
select-empty-list.html
select-empty-optgroup-expected.txt
select-empty-optgroup.html
select-empty-option-height.html
select-empty-size-expected.html [macOS] Text inside form controls is off center on burton.com 2021-01-06 23:45:44 +00:00
select-empty-size.html [macOS] Text inside form controls is off center on burton.com 2021-01-06 23:45:44 +00:00
select-font-optical-size-expected.txt
select-font-optical-size.html
select-generated-content-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
select-generated-content.html
select-index-setter-expected.txt
select-index-setter.html
select-initial-position.html Remove unneeded whitespace between content and <br> 2020-10-25 19:52:34 +00:00
select-item-background-clip.html
select-list-box-mouse-focus-expected.txt
select-list-box-mouse-focus.html
select-list-box-with-height.html
select-listbox-focus-displaynone-expected.txt Implement iterator for traversing composed DOM 2015-10-13 13:12:25 +00:00
select-listbox-focus-displaynone.html
select-listbox-multiple-no-focusring-expected.txt
select-listbox-multiple-no-focusring.html
select-live-pseudo-selectors-expected.txt
select-live-pseudo-selectors.html
select-max-length-expected.txt
select-max-length.html
select-multiple-elements-with-mouse-drag-expected.txt
select-multiple-elements-with-mouse-drag-with-options-less-than-size-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
select-multiple-elements-with-mouse-drag-with-options-less-than-size.html
select-multiple-elements-with-mouse-drag.html Change fast/f* files to use pre and post js files in LayoutTests/resources. 2013-09-07 23:31:07 +00:00
select-namedItem-expected.txt
select-namedItem.html
select-no-name-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
select-no-name.html
select-non-native-rendering-direction-expected.txt
select-non-native-rendering-direction.html
select-option-accesskey-crash-expected.txt
select-option-accesskey-crash.html
select-out-of-bounds-index-expected.txt
select-out-of-bounds-index.html
select-overflow-scroll-expected.txt
select-overflow-scroll-inherited-expected.txt Optimize baselines: fast/forms 2013-11-04 00:35:27 +00:00
select-overflow-scroll-inherited.html
select-overflow-scroll.html
select-popup-pagekeys-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
select-popup-pagekeys.html
select-remove-option-expected.txt
select-remove-option.html
select-replace-option-expected.txt
select-replace-option.html
select-reset-expected.txt
select-reset-multiple-selections-4-single-selection-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
select-reset-multiple-selections-4-single-selection.html
select-reset.html
select-script-onchange-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
select-script-onchange.html
select-selected.html
select-set-inner-expected.txt
select-set-inner.html
select-set-length-expected.txt
select-set-length-optgroup-expected.txt
select-set-length-optgroup.html
select-set-length-with-mutation-expected.txt
select-set-length-with-mutation-remove-expected.txt
select-set-length-with-mutation-remove.html
select-set-length-with-mutation-reorder-expected.txt
select-set-length-with-mutation-reorder.html
select-set-length-with-mutation-reparent-expected.txt
select-set-length-with-mutation-reparent.html Change fast/f* files to use pre and post js files in LayoutTests/resources. 2013-09-07 23:31:07 +00:00
select-set-length-with-mutation.html
select-set-length.html
select-size-expected.html
select-size.html
select-style.html Remove unneeded whitespace between content and <br> 2020-10-25 19:52:34 +00:00
select-type-ahead-list-box-no-selection-expected.txt
select-type-ahead-list-box-no-selection.html
select-type-ahead-non-latin-expected.txt
select-type-ahead-non-latin.html
select-visual-hebrew.html
select-width-font-change-expected.txt
select-width-font-change.html
select-writing-direction-natural.html
selected-index-assert-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
selected-index-assert.html
selected-index-value-expected.txt
selected-index-value.html
selection-direction-expected.txt Source/WebCore: 2020-11-17 01:34:46 +00:00
selection-direction.html Source/WebCore: 2020-11-17 01:34:46 +00:00
selection-functions-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
selection-functions.html
selection-start-end-readonly-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
selection-start-end-readonly.html
selection-wrongtype-expected.txt
selection-wrongtype.html
selectlist-minsize.html
setCustomValidity-arguments-expected.txt
setCustomValidity-arguments.html [Testing] Rename test header commands to match names in WebPreferences*.yaml 2020-10-13 17:16:15 +00:00
setCustomValidity-existence-expected.txt
setCustomValidity-existence.html [Testing] Rename test header commands to match names in WebPreferences*.yaml 2020-10-13 17:16:15 +00:00
setCustomValidity-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
setCustomValidity-null-parameter-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
setCustomValidity-null-parameter.html [Testing] Rename test header commands to match names in WebPreferences*.yaml 2020-10-13 17:16:15 +00:00
setCustomValidity.html
setrangetext-expected.txt
setrangetext.html
shadow-tree-exposure-expected.txt
shadow-tree-exposure.html
slow-click-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
slow-click.html
state-restore-broken-state-expected.txt
state-restore-broken-state.html
state-restore-empty-state-expected.txt
state-restore-empty-state.html
state-restore-hidden-expected.txt
state-restore-hidden.html
state-restore-per-form-expected.txt
state-restore-per-form.html
state-restore-skip-stateless-expected.txt
state-restore-skip-stateless.html [Testing] Rename test header commands to match names in WebPreferences*.yaml 2020-10-13 17:16:15 +00:00
state-restore-to-non-autocomplete-form-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
state-restore-to-non-autocomplete-form.html
state-restore-to-non-edited-controls-expected.txt
state-restore-to-non-edited-controls.html
state-save-of-detached-control-expected.txt
state-save-of-detached-control.html
stuff-on-my-optgroup.html
style-display-none-expected.txt
style-display-none.html
submit-change-fragment-expected.txt
submit-change-fragment.html
submit-form-attributes-expected.txt
submit-form-attributes.html
submit-form-with-dirname-attribute-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
submit-form-with-dirname-attribute-with-ancestor-dir-attribute-expected.txt
submit-form-with-dirname-attribute-with-ancestor-dir-attribute.html
submit-form-with-dirname-attribute-with-nonhtml-ancestor-expected.txt
submit-form-with-dirname-attribute-with-nonhtml-ancestor.html
submit-form-with-dirname-attribute.html
submit-nil-value-field-assert-expected.txt
submit-nil-value-field-assert.html
submit-to-blank-multiple-times-expected.txt
submit-to-blank-multiple-times.html
submit-to-url-fragment-expected.txt
submit-to-url-fragment.html
submit-while-you-submit-expected.txt
submit-while-you-submit.html
submit-with-base-expected.txt
submit-with-base.html
tab-in-input-expected.txt
tab-in-input.html
tabbing-input-iframe.html
tabs-with-modifiers-expected.txt
tabs-with-modifiers.html
targeted-frame-submission.html
text-control-intrinsic-widths.html
text-control-select-blurred-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
text-control-select-blurred.html
text-control-selection-crash-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
text-control-selection-crash.html
text-field-setvalue-crash-expected.txt
text-field-setvalue-crash.html
text-input-event-expected.txt
text-input-event.html
text-set-value-crash-expected.txt
text-set-value-crash.html
textAreaLineHeight-simple-lines-expected.html Support overflow-wrap:break-word on simple line path 2013-11-13 13:25:32 +00:00
textAreaLineHeight-simple-lines.html
textAreaLineHeight.html
textarea-align.html Remove unneeded whitespace between content and <br> 2020-10-25 19:52:34 +00:00
textarea-and-mutation-events-appending-text-expected.txt
textarea-and-mutation-events-appending-text.html Change fast/f* files to use pre and post js files in LayoutTests/resources. 2013-09-07 23:31:07 +00:00
textarea-and-mutation-events-expected.txt
textarea-and-mutation-events.html
textarea-appearance-wrap-expected.txt
textarea-appearance-wrap.html
textarea-arrow-navigation-expected.txt
textarea-arrow-navigation.html
textarea-checkValidity-crash-expected.txt
textarea-checkValidity-crash.html
textarea-crlf-expected.txt
textarea-crlf.html
textarea-default-value-leading-newline-expected.txt
textarea-default-value-leading-newline.html
textarea-hard-linewrap-empty-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
textarea-hard-linewrap-empty.html
textarea-initial-caret-position-expected.txt
textarea-initial-caret-position.html
textarea-input-event-expected.txt
textarea-input-event.html
textarea-linewrap-dynamic-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
textarea-linewrap-dynamic.html
textarea-live-pseudo-selectors-expected.txt
textarea-live-pseudo-selectors.html
textarea-maxlength-expected.txt
textarea-maxlength.html
textarea-metrics-expected.txt
textarea-metrics.html
textarea-newline-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
textarea-newline.html
textarea-no-scroll-on-blur-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
textarea-no-scroll-on-blur.html
textarea-node-removed-from-document-crash-expected.txt
textarea-node-removed-from-document-crash.html Use testRunner instead of layoutTestController in fast/fast-mobile-scrolling, flexbox, forms, frames, gradients tests 2012-06-22 06:52:33 +00:00
textarea-paste-newline-expected.txt
textarea-paste-newline.html
textarea-placeholder-dom-property-expected.txt
textarea-placeholder-dom-property.html
textarea-placeholder-layout-view-expected.html input element with placeholder text and width set to 100% on focus causes overflow even after losing focus 2013-02-20 18:27:03 +00:00
textarea-placeholder-layout-view.html
textarea-placeholder-pseudo-style.html
textarea-placeholder-relayout-assertion-expected.txt
textarea-placeholder-relayout-assertion.html
textarea-placeholder-set-attribute-expected.html Convert some placeholder-related tests to reftests 2011-11-28 09:37:08 +00:00
textarea-placeholder-set-attribute.html
textarea-placeholder-set-value-expected.html
textarea-placeholder-set-value.html
textarea-placeholder-visibility-1.html
textarea-placeholder-visibility-2.html
textarea-placeholder-wrapping-expected.html
textarea-placeholder-wrapping.html
textarea-rows-cols-expected.txt
textarea-rows-cols.html
textarea-scroll-height.html
textarea-scrollbar-height-expected.txt
textarea-scrollbar-height.html
textarea-scrollbar.html Remove unneeded whitespace between content and <br> 2020-10-25 19:52:34 +00:00
textarea-scrolled-endline-caret-expected.txt
textarea-scrolled-endline-caret.html
textarea-scrolled-type.html
textarea-selection-preservation-expected.txt
textarea-selection-preservation.html
textarea-set-defaultvalue-after-value-expected.txt
textarea-set-defaultvalue-after-value.html
textarea-setinnerhtml.html
textarea-setvalue-submit-expected.txt
textarea-setvalue-submit.html
textarea-setvalue-without-renderer-expected.txt
textarea-setvalue-without-renderer.html
textarea-submit-crash-expected.txt
textarea-submit-crash.html
textarea-textlength-expected.txt
textarea-textlength.html
textarea-trailing-newline-expected.txt
textarea-trailing-newline.html
textarea-type-spaces-expected.txt
textarea-type-spaces.html
textarea-width.html
textarea-wrap-attribute-expected.txt
textarea-wrap-attribute.html
textfield-clone-expected.txt
textfield-clone.html
textfield-drag-into-disabled-expected.txt
textfield-drag-into-disabled.html
textfield-focus-out-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
textfield-focus-out.html
textfield-focus-ring.html
textfield-inside-anchor-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
textfield-inside-anchor.html
textfield-lastchange-was-useredit-expected.txt lastChangeWasUserEdit continues to return true when innerText or textContent is modified 2011-08-30 11:23:24 +00:00
textfield-lastchange-was-useredit.html
textfield-no-linebreak-expected.html
textfield-no-linebreak.html
textfield-onchange-deletion-expected.txt
textfield-onchange-deletion.html
textfield-onchange-without-focus-expected.html A change event gets dispatched when textarea gets changed without focus 2020-03-17 00:14:34 +00:00
textfield-onchange-without-focus.html
textfield-outline.html
textfield-overflow-by-value-update-expected.png
textfield-overflow-by-value-update-expected.txt
textfield-overflow-by-value-update.html
textfield-overflow.html
textfield-to-password-on-focus-expected.txt
textfield-to-password-on-focus.html
textinput-not-fired-on-enter-in-input-expected.txt
textinput-not-fired-on-enter-in-input.html
time-input-svg-font-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
time-input-svg-font.html
type-after-focus-rule-shrink-width-expected.txt
type-after-focus-rule-shrink-width.html
update-form-attribute-element-expected.txt
update-form-attribute-element.html
update-form-owner-in-moved-subtree-assertion-failure-2-expected.txt
update-form-owner-in-moved-subtree-assertion-failure-2.html
update-form-owner-in-moved-subtree-assertion-failure-3-expected.txt
update-form-owner-in-moved-subtree-assertion-failure-3.html
update-form-owner-in-moved-subtree-assertion-failure-4-expected.txt
update-form-owner-in-moved-subtree-assertion-failure-4.html
update-form-owner-in-moved-subtree-assertion-failure-5-expected.txt
update-form-owner-in-moved-subtree-assertion-failure-5.html
update-form-owner-in-moved-subtree-assertion-failure-6-expected.txt
update-form-owner-in-moved-subtree-assertion-failure-6.html
update-form-owner-in-moved-subtree-assertion-failure-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
update-form-owner-in-moved-subtree-assertion-failure.html [Testing] Rename test header commands to match names in WebPreferences*.yaml 2020-10-13 17:16:15 +00:00
update-from-element-during-editing-crash-1-expected.txt
update-from-element-during-editing-crash-1.html
update-from-element-during-editing-crash-2-expected.txt
update-from-element-during-editing-crash-2.html
update-required-state-on-radio-before-finalizing-tree-insertion-crash-expected.txt
update-required-state-on-radio-before-finalizing-tree-insertion-crash.html
validation-bubble-disappears-during-layout-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
validation-bubble-disappears-during-layout.html Protect this object in ValidationMessage::buildBubbleTree 2020-09-11 06:58:18 +00:00
validation-bubble-disappears-when-input-detached-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
validation-bubble-disappears-when-input-detached.html
validation-bubble-disappears-when-input-moved-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
validation-bubble-disappears-when-input-moved.html
validation-bubble-disappears-when-input-no-longer-visible-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
validation-bubble-disappears-when-input-no-longer-visible.html
validation-bubble-escape-key-dismiss-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
validation-bubble-escape-key-dismiss.html
validation-custom-message-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
validation-custom-message.html
validation-message-appearance.html
validation-message-clone-expected.txt
validation-message-clone.html
validation-message-detached-iframe-expected.txt
validation-message-detached-iframe.html
validation-message-detached-iframe2-expected.txt HTML form validation bubble disappears 2018-11-09 17:37:52 +00:00
validation-message-detached-iframe2.html
validation-message-in-relative-body-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
validation-message-in-relative-body.html
validation-message-maxLength-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
validation-message-maxLength.html
validation-message-minimum-font-size-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
validation-message-minimum-font-size.html
validation-message-on-checkbox-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
validation-message-on-checkbox.html
validation-message-on-listbox-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
validation-message-on-listbox.html
validation-message-on-menulist-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
validation-message-on-menulist.html
validation-message-on-radio-expected.txt
validation-message-on-radio.html
validation-message-on-range-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
validation-message-on-range.html
validation-message-on-textarea-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
validation-message-on-textarea.html
validation-message-user-modify-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
validation-message-user-modify.html
validation-messages-expected.txt Remove trailing spaces from expected.txt files (excluding WPT for now since that contains too many) 2020-09-27 02:15:19 +00:00
validation-messages.html
validationMessage-expected.txt
validationMessage.html [Testing] Rename test header commands to match names in WebPreferences*.yaml 2020-10-13 17:16:15 +00:00
var-name-conflict-in-form-event-handler-expected.txt
var-name-conflict-in-form-event-handler.html
visual-hebrew-text-field.html
webkit-appearance-searchfield-cancel-button-crash-expected.txt
webkit-appearance-searchfield-cancel-button-crash.html
willvalidate-expected.txt
willvalidate.html [Testing] Rename test header commands to match names in WebPreferences*.yaml 2020-10-13 17:16:15 +00:00
xss-auditor-doesnt-crash-on-post-submit-expected.txt
xss-auditor-doesnt-crash-on-post-submit.html Remove remaining alternative preference setting mechanisms from LayoutTests 2020-11-01 20:09:38 +00:00
zoomed-controls-expected.txt
zoomed-controls.html