Changeset 238223 in webkit
- Timestamp:
- Nov 15, 2018, 5:57:50 AM (7 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/TestExpectations (modified) (1 diff)
-
LayoutTests/platform/mac-wk2/TestExpectations (modified) (1 diff)
-
LayoutTests/platform/mac-wk2/accessibility/mac/selection-notification-focus-change-expected.txt (modified) (1 diff)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/dom/Document.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r238222 r238223 1 2018-11-15 Antti Koivisto <antti@apple.com> 2 3 REGRESSION(r238178): fast/forms/access-key-mutated.html and fast/forms/access-key-case-insensitive.html are timing out 4 https://bugs.webkit.org/show_bug.cgi?id=191642 5 6 Reviewed by Zalan Bujtas. 7 8 * TestExpectations: Unskip 9 * platform/mac-wk2/TestExpectations: Unskip 10 * platform/mac-wk2/accessibility/mac/selection-notification-focus-change-expected.txt: 11 12 Rebase. Focus timings depends on layout timings. 13 1 14 2018-11-15 Antti Koivisto <antti@apple.com> 2 15 -
trunk/LayoutTests/TestExpectations
r238194 r238223 2951 2951 fast/mediacapturefromelement/CanvasCaptureMediaStream-framerate-0.html [ Skip ] 2952 2952 fast/mediacapturefromelement/CanvasCaptureMediaStream-capture-out-of-DOM-element.html [ Skip ] 2953 2954 webkit.org/b/191642 fast/forms/access-key-case-insensitive.html [ Skip ]2955 webkit.org/b/191642 fast/forms/access-key-mutated.html [ Skip ] -
trunk/LayoutTests/platform/mac-wk2/TestExpectations
r238207 r238223 908 908 webkit.org/b/191644 [ Sierra ] fast/workers/worker-cloneport.html [ Pass Failure ] 909 909 910 webkit.org/b/191642 accessibility/mac/selection-notification-focus-change.html [ Skip ]911 912 910 webkit.org/b/191658 [ Sierra Release ] fast/layers/no-clipping-overflow-hidden-added-after-transform.html [ Pass ImageOnlyFailure ] -
trunk/LayoutTests/platform/mac-wk2/accessibility/mac/selection-notification-focus-change-expected.txt
r228417 r238223 8 8 Received AXSelectedTextChanged 9 9 PASS userInfo["AXTextSelectionChangedFocus"] is true 10 Received AXFocusChanged 10 11 Received AXSelectedTextChanged 11 12 PASS userInfo["AXTextSelectionChangedFocus"] is true 12 Received AXFocusChanged13 13 14 14 PASS accessibilityController.accessibleElementById("1").isFocusable is true -
trunk/Source/WebCore/ChangeLog
r238222 r238223 1 2018-11-15 Antti Koivisto <antti@apple.com> 2 3 REGRESSION(r238178): fast/forms/access-key-mutated.html and fast/forms/access-key-case-insensitive.html are timing out 4 https://bugs.webkit.org/show_bug.cgi?id=191642 5 6 Reviewed by Zalan Bujtas. 7 8 Invalidate access key map even when thorttling style recalcs. 9 10 * dom/Document.cpp: 11 (WebCore::Document::scheduleStyleRecalc): 12 1 13 2018-11-15 Antti Koivisto <antti@apple.com> 2 14 -
trunk/Source/WebCore/dom/Document.cpp
r238212 r238223 1805 1805 ASSERT(childNeedsStyleRecalc() || m_pendingStyleRecalcShouldForce); 1806 1806 1807 // FIXME: Why on earth is this here? This is clearly misplaced. 1808 invalidateAccessKeyMap(); 1809 1807 1810 auto shouldThrottleStyleRecalc = [&] { 1808 1811 if (m_pendingStyleRecalcShouldForce) … … 1818 1821 return; 1819 1822 1820 // FIXME: Why on earth is this here? This is clearly misplaced.1821 invalidateAccessKeyMap();1822 1823 1823 m_styleRecalcTimer.startOneShot(0_s); 1824 1824
Note:
See TracChangeset
for help on using the changeset viewer.