Changeset 125789 in webkit
- Timestamp:
- Aug 16, 2012, 10:20:24 AM (13 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r125775 r125789 1 2012-08-16 Adrienne Walker <enne@google.com> 2 3 Make compositing/layer-creation/overflow-scroll-overlap non-flaky 4 https://bugs.webkit.org/show_bug.cgi?id=94162 5 6 Reviewed by James Robinson. 7 8 This test has been failing flakily in Chromium with the scrollbar 9 layer sometimes being composited and sometimes not. This is likely due 10 to the video flakily being accelerated depending on whether it has 11 loaded or not. 12 13 Fix this test by making it always have a vertical scrollbar and remove 14 the video with an always-composited div. 15 16 * compositing/layer-creation/overflow-scroll-overlap-expected.txt: 17 * compositing/layer-creation/overflow-scroll-overlap.html: 18 * platform/chromium/TestExpectations: 19 * platform/chromium/compositing/layer-creation/overflow-scroll-overlap-expected.txt: Removed. 20 1 21 2012-08-16 Zan Dobersek <zandobersek@gmail.com> 2 22 -
trunk/LayoutTests/compositing/layer-creation/overflow-scroll-overlap-expected.txt
r67682 r125789 1 1 (GraphicsLayer 2 2 (bounds 800.00 600.00) 3 3 (children 1 … … 8 8 (position 8.00 8.00) 9 9 (bounds 30.00 30.00) 10 (opacity 0.00)11 10 ) 12 11 (GraphicsLayer … … 14 13 (bounds 306.00 206.00) 15 14 (drawsContent 1) 15 (children 1 16 (GraphicsLayer 17 (position 288.00 3.00) 18 (bounds 15.00 200.00) 19 (drawsContent 1) 20 ) 21 ) 16 22 ) 17 23 (GraphicsLayer -
trunk/LayoutTests/compositing/layer-creation/overflow-scroll-overlap.html
r119992 r125789 5 5 <style type="text/css" media="screen"> 6 6 7 video{7 .composited { 8 8 height: 30px; 9 9 width: 30px; 10 opacity: 0; /* Avoid issues in pixel test */10 -webkit-transform:translateZ(0); 11 11 } 12 12 … … 15 15 top: 20px; 16 16 left: 20px; 17 overflow : auto;17 overflow-y: scroll; 18 18 height: 200px; 19 19 width: 300px; … … 61 61 <body> 62 62 63 < video src="../resources/video.mp4" height="20" width="20"></video>63 <div class="composited"></div> 64 64 65 65 <div id="scroller" class="overflow"> -
trunk/LayoutTests/platform/chromium/TestExpectations
r125748 r125789 3288 3288 BUGWK88131 DEBUG : fast/dom/HTMLMeterElement/meter-element-crash.html = PASS TEXT 3289 3289 3290 BUGWK67116 DEBUG : compositing/layer-creation/overflow-scroll-overlap.html = PASS TEXT3291 3292 3290 BUGWK88593 : fast/table/multiple-captions-display.xhtml = PASS IMAGE IMAGE+TEXT 3293 3291
Note:
See TracChangeset
for help on using the changeset viewer.