Changeset 238540 in webkit
- Timestamp:
- Nov 26, 2018, 5:59:19 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 4 deleted
- 5 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/TestExpectations (modified) (1 diff)
-
LayoutTests/fast/forms/auto-fill-button/caps-lock-indicator-should-be-visible-when-after-hiding-auto-fill-strong-password-button-expected.html (deleted)
-
LayoutTests/fast/forms/auto-fill-button/caps-lock-indicator-should-be-visible-when-after-hiding-auto-fill-strong-password-button.html (deleted)
-
LayoutTests/fast/forms/auto-fill-button/caps-lock-indicator-should-not-be-visible-when-auto-fill-strong-password-button-is-visible-expected.html (deleted)
-
LayoutTests/fast/forms/auto-fill-button/caps-lock-indicator-should-not-be-visible-when-auto-fill-strong-password-button-is-visible.html (deleted)
-
LayoutTests/platform/mac-wk2/TestExpectations (modified) (1 diff)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/html/TextFieldInputType.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r238538 r238540 1 2018-11-26 Ryan Haddad <ryanhaddad@apple.com> 2 3 Unreviewed, rolling out r238357. 4 5 One of the layout tests added with this change is failing on Mojave. 6 7 Reverted changeset: 8 "REGRESSION (r238078): Do not draw caps lock indicator when Strong Password button is shown" 9 https://bugs.webkit.org/show_bug.cgi?id=191969 10 https://trac.webkit.org/changeset/238513 11 1 12 2018-11-26 Tim Horton <timothy_horton@apple.com> 2 13 -
trunk/LayoutTests/TestExpectations
r238522 r238540 400 400 401 401 fast/events/detect-caps-lock.html [ Skip ] 402 fast/forms/auto-fill-button/caps-lock-indicator-should-be-visible-when-after-hiding-auto-fill-strong-password-button.html [ Skip ]403 fast/forms/auto-fill-button/caps-lock-indicator-should-not-be-visible-when-auto-fill-strong-password-button-is-visible.html [ Skip ]404 402 fast/repaint/placeholder-after-caps-lock-hidden.html [ Skip ] 405 403 fast/forms/password-scrolled-after-caps-lock-toggled.html [ Skip ] -
trunk/LayoutTests/platform/mac-wk2/TestExpectations
r238522 r238540 69 69 70 70 [ Mojave+ ] fast/events/detect-caps-lock.html [ Pass ] 71 [ Mojave+ ] fast/forms/auto-fill-button/caps-lock-indicator-should-be-visible-when-after-hiding-auto-fill-strong-password-button.html [ Pass ]72 [ Mojave+ ] fast/forms/auto-fill-button/caps-lock-indicator-should-not-be-visible-when-auto-fill-strong-password-button-is-visible.html [ Pass ]73 71 [ Mojave+ ] fast/repaint/placeholder-after-caps-lock-hidden.html [ Pass ] 74 72 [ Mojave+ ] fast/forms/password-scrolled-after-caps-lock-toggled.html [ Pass ] -
trunk/Source/WebCore/ChangeLog
r238538 r238540 1 2018-11-26 Ryan Haddad <ryanhaddad@apple.com> 2 3 Unreviewed, rolling out r238357. 4 5 One of the layout tests added with this change is failing on Mojave. 6 7 Reverted changeset: 8 "REGRESSION (r238078): Do not draw caps lock indicator when Strong Password button is shown" 9 https://bugs.webkit.org/show_bug.cgi?id=191969 10 https://trac.webkit.org/changeset/238513 11 1 12 2018-11-26 Tim Horton <timothy_horton@apple.com> 2 13 -
trunk/Source/WebCore/html/TextFieldInputType.cpp
r238513 r238540 725 725 return false; 726 726 727 if (element()->hasAutoFillStrongPasswordButton())728 return false;729 730 727 RefPtr<Frame> frame = element()->document().frame(); 731 728 if (!frame) … … 796 793 void TextFieldInputType::updateAutoFillButton() 797 794 { 798 capsLockStateMayHaveChanged();799 800 795 if (shouldDrawAutoFillButton()) { 801 796 if (!m_container)
Note:
See TracChangeset
for help on using the changeset viewer.