Changeset 161484 in webkit
- Timestamp:
- Jan 7, 2014, 11:33:10 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r161481 r161484 1 2014-01-07 Antti Koivisto <antti@apple.com> 2 3 REGRESSION (r161195): Acid2 regression tests frequently fail 4 https://bugs.webkit.org/show_bug.cgi?id=126432 5 6 Reviewed by Anders Carlsson. 7 8 * TestExpectations: acid2 is no longer flaky. 9 * fast/overflow/overflow-height-float-not-removed-crash3-expected.txt: whitespace change. 10 1 11 2014-01-07 Eric Carlson <eric.carlson@apple.com> 2 12 -
trunk/LayoutTests/TestExpectations
r161430 r161484 70 70 71 71 webkit.org/b/126142 css3/calc/transitions-dependent.html [ Pass Failure ] 72 73 webkit.org/b/126432 fast/css/acid2-pixel.html [ Pass Failure ]74 webkit.org/b/126432 fast/css/acid2.html [ Pass Failure ]75 webkit.org/b/126432 http/tests/misc/acid2-pixel.html [ Pass Failure ]76 webkit.org/b/126432 http/tests/misc/acid2.html [ Pass Failure ] -
trunk/LayoutTests/fast/overflow/overflow-height-float-not-removed-crash3-expected.txt
r161195 r161484 1 1 Test passes if it does not crash. 2 2 sometextsometextsometextsometextsometextsometext 3 3 -
trunk/Source/WebCore/ChangeLog
r161482 r161484 1 2014-01-07 Antti Koivisto <antti@apple.com> 2 3 REGRESSION (r161195): Acid2 regression tests frequently fail 4 https://bugs.webkit.org/show_bug.cgi?id=126432 5 6 Reviewed by Anders Carlsson. 7 8 We would occasionally dump the render tree before the actual last resource on the page was loaded. 9 The problematic resource is an image loaded by an <object> tag nested as fallback of another <object>. 10 11 * html/HTMLObjectElement.cpp: 12 (WebCore::HTMLObjectElement::renderFallbackContent): 13 14 Force style recalc when rendering fallback content. The current mechanism for triggering the fallback content load 15 requires a style recalc. 16 1 17 2014-01-07 Andreas Kling <akling@apple.com> 2 18 -
trunk/Source/WebCore/html/HTMLObjectElement.cpp
r161196 r161484 387 387 388 388 m_useFallbackContent = true; 389 390 // This is here mainly to keep acid2 non-flaky. A style recalc is required to make fallback resources to load. Without forcing 391 // this may happen after all the other resources have been loaded and the document is already considered complete. 392 // FIXME: Disentangle fallback content handling from style recalcs. 393 document().updateStyleIfNeeded(); 389 394 } 390 395
Note:
See TracChangeset
for help on using the changeset viewer.