| OLD | NEW |
| (Empty) | |
| 1 #!/bin/sh |
| 2 cd `dirname $0`/../LayoutTests |
| 3 |
| 4 cat >SlimmingPaintExpectations <<END |
| 5 # Slimming paint overriding expectations (to change, modify sp/gen-expectations) |
| 6 Bug(0) virtual/slimmingpaint/ [ Skip ] |
| 7 Bug(0) virtual/stable/ [ Skip ] |
| 8 Bug(0) virtual/deferred/ [ Skip ] |
| 9 |
| 10 crbug.com/486830 Bug(try) virtual/display_list_2d_canvas/fast/canvas/canvas-scal
e-drawImage-shadow.html [ Failure ] |
| 11 crbug.com/486920 Bug(try) plugins/destroy-on-setwindow.html [ Crash ] |
| 12 crbug.com/486771 Bug(try) virtual/display_list_2d_canvas/fast/canvas/canvas-crea
teImageBitmap-webgl.html [ Crash ] |
| 13 |
| 14 # Fixed 6/9 crbug.com/496779 Bug(try) inspector/tracing/paint-profiler-update.ht
ml [ Timeout ] |
| 15 # Fixed 6/8 crbug.com/496539 Bug(try) plugins/webview-plugin-lifecycle.html [ Cr
ash ] |
| 16 # Fixed 6/1 crbug.com/486845 Bug(try) virtual/display_list_2d_canvas/fast/canvas
/canvas-composite-repaint-by-all-imagesource.html [ Crash ] |
| 17 # Fixed crbug.com/486767 Bug(try) inspector/tracing/frame-model-instrumentation.
html [ Crash ] |
| 18 # Fixed crbug.com/486767 Bug(try) inspector/tracing/layer-tree.html [ Crash ] |
| 19 # Fixed crbug.com/486767 Bug(try) inspector/tracing/paint-command-log-nodes.html
[ Crash ] |
| 20 # Fixed 5/22 crbug.com/486774 Bug(try) editing/selection/select-all-iframe-crash
.html [ Crash ] |
| 21 # Fixed 5/22 crbug.com/486784 Bug(try) scrollingcoordinator/non-fast-scrollable-
region-nested.html [ Crash ] |
| 22 # Fixed crbug.com/486825 Bug(try) editing/selection/extend-by-character-002.html
[ ImageOnlyFailure ] |
| 23 |
| 24 # Under-invalidations |
| 25 # Fixed crbug.com/486790 Bug(try) virtual/rootlayerscrolls/fast/scrolling/backgr
ound-paint-scrolled.html [ ImageOnlyFailure Crash ] |
| 26 # Fixed crbug.com/486921 Bug(try) [ Mac ] virtual/prefer_compositing_to_lcd_text
/compositing/overflow/do-not-paint-outline-into-composited-scrolling-contents.ht
ml [ Crash ] |
| 27 |
| 28 # Fixed 5/22 crbug.com/471100 virtual/threaded/printing/webgl-repeated-printing-
preservedrawingbuffer.html [ Crash ] |
| 29 # Fixed 5/22 crbug.com/471100 virtual/threaded/printing/webgl-repeated-printing.
html [ Crash ] |
| 30 |
| 31 crbug.com/382491 css3/blending/background-blend-mode-overlapping-accelerated-ele
ments.html [ ImageOnlyFailure ] |
| 32 crbug.com/382491 editing/selection/transformed-selection-rects.html [ ImageOnlyF
ailure ] |
| 33 crbug.com/382491 transforms/svg-vs-css.xhtml [ ImageOnlyFailure ] |
| 34 crbug.com/382491 virtual/threaded/printing/iframe-print.html [ ImageOnlyFailure
] |
| 35 |
| 36 # Flakiness due to non-SP bugs. Some are in LayoutTests/FlakyTests. |
| 37 # Don't know why our try jobs pick up them. |
| 38 Bug(0) [ Win ] fast/dynamic/first-letter-display-change.html [ Pass ImageOnlyFai
lure ] |
| 39 |
| 40 # Expected repaint test result differences. |
| 41 Bug(0) css3/flexbox/repaint-column-reverse.html [ NeedsRebaseline ] |
| 42 Bug(0) css3/flexbox/repaint-during-resize-no-flex.html [ NeedsRebaseline ] |
| 43 Bug(0) css3/flexbox/repaint-on-layout.html [ NeedsRebaseline ] |
| 44 Bug(0) css3/flexbox/repaint-on-margin-change.html [ NeedsRebaseline ] |
| 45 Bug(0) css3/flexbox/repaint-opacity-change.html [ NeedsRebaseline ] |
| 46 Bug(0) css3/flexbox/repaint-rtl-column.html [ NeedsRebaseline ] |
| 47 Bug(0) css3/flexbox/repaint.html [ NeedsRebaseline ] |
| 48 Bug(0) editing/selection/repaint-rect-for-vertical-writing-mode-with-positioned-
root.html [ NeedsRebaseline ] |
| 49 Bug(0) media/audio-repaint.html [ NeedsRebaseline ] |
| 50 Bug(0) media/video-paint-invalidation.html [ NeedsRebaseline ] |
| 51 Bug(0) transforms/transform-focus-ring-repaint.html [ NeedsRebaseline ] |
| 52 Bug(0) virtual/prefer_compositing_to_lcd_text/compositing/overflow/scrolling-wit
hout-painting.html [ NeedsRebaseline ] |
| 53 Bug(0) virtual/prefer_compositing_to_lcd_text/compositing/overflow/text-color-ch
ange.html [ NeedsRebaseline ] |
| 54 Bug(0) virtual/prefer_compositing_to_lcd_text/compositing/overflow/text-match-hi
ghlight.html [ NeedsRebaseline ] |
| 55 Bug(0) virtual/prefer_compositing_to_lcd_text/compositing/overflow/updating-scro
lling-container-and-content.html [ NeedsRebaseline ] |
| 56 Bug(0) virtual/prefer_compositing_to_lcd_text/compositing/overflow/updating-scro
lling-container.html [ NeedsRebaseline ] |
| 57 Bug(0) virtual/prefer_compositing_to_lcd_text/compositing/overflow/updating-scro
lling-content.html [ NeedsRebaseline ] |
| 58 |
| 59 # The following are generated from LayoutTests/TestExpectations by sp/gen-expect
ations |
| 60 END |
| 61 |
| 62 grep "virtual/slimmingpaint/.*\..*" TestExpectations | grep -v Skip | |
| 63 sed 's"virtual/slimmingpaint/""' >> SlimmingPaintExpectations |
| OLD | NEW |