Skip to content

Commit

Permalink
Bug 1369941: Replace single integers N in fuzzy() and fuzzy-if() with…
Browse files Browse the repository at this point in the history
… 0-N ranges. r=dholbert

This patch was written entirely by the following script:

  #!/bin/bash

  if [ ! -d "./.hg" ]
  then
    echo "Not in a source tree." 1>&2
    exit 1
  fi

  find . -regex '.*\(ref\|crash\)test.*\.list' | while read FILENAME
  do
    echo "Processing ${FILENAME}."
    # The following has four substitutions:
    # * The first one replaces the *first* argument to fuzzy() when it doesn't
    #   have a - in it, by replacing it with an explicit 0-N range.
    # * The second one does the same for the *second* argument to fuzzy().
    # * The third does the same for the *second* argument to fuzzy-if().
    # * The fourth does the same for the *third* argument to fuzzy-if().
    #
    # Note that this is using perl rather than sed because perl doesn't
    # support non-greedy matching, which is needed for the first argument to
    # fuzzy-if.
    perl -pi -e 's/(fuzzy\()([^ ,()-]*)(,[^ ,()]*\))/${1}0-${2}${3}/g;s/(fuzzy\([^ ,()]*,)([^ ,()-]*)(\))/${1}0-${2}${3}/g;s/(fuzzy-if\([^ ]*?,)([^ ,()-]*)(,[^ ,()]*\))/${1}0-${2}${3}/g;s/(fuzzy-if\([^ ]*?,[^ ,()]*,)([^ ,()-]*)(\))/${1}0-${2}${3}/g' "${FILENAME}"
  done

Differential Revision: https://phabricator.services.mozilla.com/D2974
  • Loading branch information
dbaron committed Aug 9, 2018
1 parent b0cc8da commit 89847e6
Show file tree
Hide file tree
Showing 166 changed files with 2,430 additions and 2,430 deletions.
14 changes: 7 additions & 7 deletions dom/canvas/test/reftest/filters/reftest.list
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ default-preferences pref(canvas.filters.enabled,true)
== default-color.html ref.html
== drop-shadow.html ref.html
== drop-shadow-transformed.html ref.html
fuzzy-if(/^Windows\x20NT\x2010\.0/.test(http.oscpu)||azureSkia,1,1500) == global-alpha.html global-alpha-ref.html
fuzzy-if(/^Windows\x20NT\x2010\.0/.test(http.oscpu)||azureSkia,0-1,0-1500) == global-alpha.html global-alpha-ref.html
== global-composite-operation.html global-composite-operation-ref.html
== liveness.html ref.html
== multiple-drop-shadows.html shadow-ref.html
Expand All @@ -18,13 +18,13 @@ fuzzy-if(/^Windows\x20NT\x2010\.0/.test(http.oscpu)||azureSkia,1,1500) == global
== units-em.html ref.html
== units-ex.html ref.html
== units-off-screen.html ref.html
fuzzy(1,700) == fillText-with-filter-opacity-1.html fillText-with-filter-opacity-1-ref.html
fuzzy(1,302) == fillText-with-filter-opacity-2.html fillText-with-filter-opacity-2-ref.html
fuzzy(1,600) == strokeText-with-filter-grayscale-1.html strokeText-with-filter-grayscale-1-ref.html
fuzzy(1,600) == strokeText-with-filter-grayscale-2.html strokeText-with-filter-grayscale-2-ref.html
fuzzy(0-1,0-700) == fillText-with-filter-opacity-1.html fillText-with-filter-opacity-1-ref.html
fuzzy(0-1,0-302) == fillText-with-filter-opacity-2.html fillText-with-filter-opacity-2-ref.html
fuzzy(0-1,0-600) == strokeText-with-filter-grayscale-1.html strokeText-with-filter-grayscale-1-ref.html
fuzzy(0-1,0-600) == strokeText-with-filter-grayscale-2.html strokeText-with-filter-grayscale-2-ref.html
!= fillText-with-shadow-1.html fillText-without-shadow-1-ref.html
!= fillText-with-shadow-2.html fillText-without-shadow-2-ref.html
fuzzy(1,400) == fillText-with-filter-grayscale-1.html fillText-with-filter-grayscale-1-ref.html
fuzzy(1,400) == fillText-with-filter-grayscale-2.html fillText-with-filter-grayscale-2-ref.html
fuzzy(0-1,0-400) == fillText-with-filter-grayscale-1.html fillText-with-filter-grayscale-1-ref.html
fuzzy(0-1,0-400) == fillText-with-filter-grayscale-2.html fillText-with-filter-grayscale-2-ref.html
!= strokeText-with-shadow-1.html strokeText-without-shadow-1-ref.html
!= strokeText-with-shadow-2.html strokeText-without-shadow-2-ref.html
56 changes: 28 additions & 28 deletions dom/canvas/test/reftest/reftest.list

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dom/encoding/test/reftest/reftest.list
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
== bug863728-1.html bug863728-1-ref.html
fuzzy-if(skiaContent,1,10) == bug863728-2.html bug863728-2-ref.html
fuzzy-if(skiaContent,0-1,0-10) == bug863728-2.html bug863728-2-ref.html
== bug863728-3.html bug863728-3-ref.html
== bug945215-1.html bug945215-1-ref.html
fuzzy-if(skiaContent,1,10) == bug945215-2.html bug945215-2-ref.html
fuzzy-if(skiaContent,0-1,0-10) == bug945215-2.html bug945215-2-ref.html
24 changes: 12 additions & 12 deletions dom/html/reftests/autofocus/reftest.list
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
default-preferences pref(dom.forms.datetime,true)
fuzzy-if(skiaContent,1,3) needs-focus == input-load.html input-ref.html
fuzzy-if(skiaContent,1,3) needs-focus == input-create.html input-ref.html
fuzzy-if(skiaContent,1,3) needs-focus == input-number.html input-number-ref.html
fuzzy-if(skiaContent,1,3) needs-focus == input-time.html input-time-ref.html
fuzzy-if(skiaContent,1,3) needs-focus == button-load.html button-ref.html
fuzzy-if(skiaContent,1,3) needs-focus == button-create.html button-ref.html
fuzzy-if(skiaContent,1,3) needs-focus == textarea-load.html textarea-ref.html
fuzzy-if(skiaContent,1,3) needs-focus == textarea-create.html textarea-ref.html
fuzzy-if(skiaContent,9,6) needs-focus == select-load.html select-ref.html
fuzzy-if(skiaContent,2,4) needs-focus == select-create.html select-ref.html
fuzzy-if(skiaContent,0-1,0-3) needs-focus == input-load.html input-ref.html
fuzzy-if(skiaContent,0-1,0-3) needs-focus == input-create.html input-ref.html
fuzzy-if(skiaContent,0-1,0-3) needs-focus == input-number.html input-number-ref.html
fuzzy-if(skiaContent,0-1,0-3) needs-focus == input-time.html input-time-ref.html
fuzzy-if(skiaContent,0-1,0-3) needs-focus == button-load.html button-ref.html
fuzzy-if(skiaContent,0-1,0-3) needs-focus == button-create.html button-ref.html
fuzzy-if(skiaContent,0-1,0-3) needs-focus == textarea-load.html textarea-ref.html
fuzzy-if(skiaContent,0-1,0-3) needs-focus == textarea-create.html textarea-ref.html
fuzzy-if(skiaContent,0-9,0-6) needs-focus == select-load.html select-ref.html
fuzzy-if(skiaContent,0-2,0-4) needs-focus == select-create.html select-ref.html
needs-focus == autofocus-after-load.html autofocus-after-load-ref.html
fuzzy-if(skiaContent,2,5) needs-focus == autofocus-leaves-iframe.html autofocus-leaves-iframe-ref.html
fuzzy-if(skiaContent,2,5) needs-focus == autofocus-after-body-focus.html autofocus-after-body-focus-ref.html
fuzzy-if(skiaContent,0-2,0-5) needs-focus == autofocus-leaves-iframe.html autofocus-leaves-iframe-ref.html
fuzzy-if(skiaContent,0-2,0-5) needs-focus == autofocus-after-body-focus.html autofocus-after-body-focus-ref.html
4 changes: 2 additions & 2 deletions dom/html/reftests/reftest.list
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ skip-if(Android) == 649134-2.html 649134-2-ref.html
# image-orientation when determining the size of the image.
# (Fuzzy necessary due to pixel-wise comparison of different JPEGs.
# The vast majority of the fuzziness comes from Linux and WinXP.)
fuzzy(1,149) == bug917595-iframe-1.html bug917595-1-ref.html
fuzzy(3,640) fuzzy-if(skiaContent,3,7544) fuzzy-if(webrender,2-3,3187-7544) == bug917595-exif-rotated.jpg bug917595-pixel-rotated.jpg # bug 1060869
fuzzy(0-1,0-149) == bug917595-iframe-1.html bug917595-1-ref.html
fuzzy(0-3,0-640) fuzzy-if(skiaContent,0-3,0-7544) fuzzy-if(webrender,2-3,3187-7544) == bug917595-exif-rotated.jpg bug917595-pixel-rotated.jpg # bug 1060869

# Test support for SVG-as-image in <picture> elements.
== bug1106522-1.html bug1106522-ref.html
Expand Down
32 changes: 16 additions & 16 deletions dom/html/reftests/toblob-todataurl/reftest.list
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
fuzzy-if(Android,105,482) == toblob-quality-0.html quality-0-ref.html
fuzzy-if(Android,38,2024) == toblob-quality-25.html quality-25-ref.html
fuzzy-if(Android,29,2336) == toblob-quality-50.html quality-50-ref.html
fuzzy-if(Android,23,3533) == toblob-quality-75.html quality-75-ref.html
fuzzy-if(Android,16,4199) == toblob-quality-92.html quality-92-ref.html
fuzzy-if(Android,8,2461) == toblob-quality-100.html quality-100-ref.html
fuzzy-if(Android,16,4199) == toblob-quality-undefined.html quality-92-ref.html
fuzzy-if(Android,16,4199) == toblob-quality-default.html quality-92-ref.html
fuzzy-if(Android,105,482) == todataurl-quality-0.html quality-0-ref.html
fuzzy-if(Android,38,2024) == todataurl-quality-25.html quality-25-ref.html
fuzzy-if(Android,29,2336) == todataurl-quality-50.html quality-50-ref.html
fuzzy-if(Android,23,3533) == todataurl-quality-75.html quality-75-ref.html
fuzzy-if(Android,16,4199) == todataurl-quality-92.html quality-92-ref.html
fuzzy-if(Android,8,2461) == todataurl-quality-100.html quality-100-ref.html
fuzzy-if(Android,16,4199) == todataurl-quality-undefined.html quality-92-ref.html
fuzzy-if(Android,16,4199) == todataurl-quality-default.html quality-92-ref.html
fuzzy-if(Android,0-105,0-482) == toblob-quality-0.html quality-0-ref.html
fuzzy-if(Android,0-38,0-2024) == toblob-quality-25.html quality-25-ref.html
fuzzy-if(Android,0-29,0-2336) == toblob-quality-50.html quality-50-ref.html
fuzzy-if(Android,0-23,0-3533) == toblob-quality-75.html quality-75-ref.html
fuzzy-if(Android,0-16,0-4199) == toblob-quality-92.html quality-92-ref.html
fuzzy-if(Android,0-8,0-2461) == toblob-quality-100.html quality-100-ref.html
fuzzy-if(Android,0-16,0-4199) == toblob-quality-undefined.html quality-92-ref.html
fuzzy-if(Android,0-16,0-4199) == toblob-quality-default.html quality-92-ref.html
fuzzy-if(Android,0-105,0-482) == todataurl-quality-0.html quality-0-ref.html
fuzzy-if(Android,0-38,0-2024) == todataurl-quality-25.html quality-25-ref.html
fuzzy-if(Android,0-29,0-2336) == todataurl-quality-50.html quality-50-ref.html
fuzzy-if(Android,0-23,0-3533) == todataurl-quality-75.html quality-75-ref.html
fuzzy-if(Android,0-16,0-4199) == todataurl-quality-92.html quality-92-ref.html
fuzzy-if(Android,0-8,0-2461) == todataurl-quality-100.html quality-100-ref.html
fuzzy-if(Android,0-16,0-4199) == todataurl-quality-undefined.html quality-92-ref.html
fuzzy-if(Android,0-16,0-4199) == todataurl-quality-default.html quality-92-ref.html
8 changes: 4 additions & 4 deletions dom/media/test/reftest/reftest.list
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
skip-if(Android) fuzzy-if(OSX,22,49977) fuzzy-if(webrender&&cocoaWidget,23-23,76795-76795) skip-if(winWidget) fuzzy-if(gtkWidget&&layersGPUAccelerated,70,600) HTTP(..) == short.mp4.firstframe.html short.mp4.firstframe-ref.html
skip-if(Android) fuzzy-if(OSX,23,51392) fuzzy-if(webrender&&cocoaWidget,23-23,76798-76798) fuzzy-if(winWidget,59,76797) fuzzy-if(gtkWidget&&layersGPUAccelerated,60,1800) HTTP(..) == short.mp4.lastframe.html short.mp4.lastframe-ref.html
skip-if(Android) skip-if(winWidget) fuzzy-if(gtkWidget&&layersGPUAccelerated,55,4281) fuzzy-if(OSX,3,111852) HTTP(..) == bipbop_300_215kbps.mp4.lastframe.html bipbop_300_215kbps.mp4.lastframe-ref.html
skip-if(Android) fuzzy-if(OSX,25,175921) fuzzy-if(winWidget,71,179198) HTTP(..) == gizmo.mp4.seek.html gizmo.mp4.55thframe-ref.html
skip-if(Android) fuzzy-if(OSX,0-22,0-49977) fuzzy-if(webrender&&cocoaWidget,23-23,76795-76795) skip-if(winWidget) fuzzy-if(gtkWidget&&layersGPUAccelerated,0-70,0-600) HTTP(..) == short.mp4.firstframe.html short.mp4.firstframe-ref.html
skip-if(Android) fuzzy-if(OSX,0-23,0-51392) fuzzy-if(webrender&&cocoaWidget,23-23,76798-76798) fuzzy-if(winWidget,0-59,0-76797) fuzzy-if(gtkWidget&&layersGPUAccelerated,0-60,0-1800) HTTP(..) == short.mp4.lastframe.html short.mp4.lastframe-ref.html
skip-if(Android) skip-if(winWidget) fuzzy-if(gtkWidget&&layersGPUAccelerated,0-55,0-4281) fuzzy-if(OSX,0-3,0-111852) HTTP(..) == bipbop_300_215kbps.mp4.lastframe.html bipbop_300_215kbps.mp4.lastframe-ref.html
skip-if(Android) fuzzy-if(OSX,0-25,0-175921) fuzzy-if(winWidget,0-71,0-179198) HTTP(..) == gizmo.mp4.seek.html gizmo.mp4.55thframe-ref.html
26 changes: 13 additions & 13 deletions dom/plugins/test/reftest/reftest.list
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
# basic sanity checking
random-if(!haveTestPlugin) HTTP != plugin-sanity.html about:blank
fails-if(!haveTestPlugin) HTTP == plugin-sanity.html div-sanity.html
fails-if(!haveTestPlugin) fuzzy-if(skiaContent&&haveTestPlugin,1,160000) HTTP == plugin-alpha-zindex.html div-alpha-zindex.html
fails-if(!haveTestPlugin) fuzzy-if(skiaContent&&haveTestPlugin,1,164000) HTTP == plugin-alpha-opacity.html div-alpha-opacity.html
fails-if(!haveTestPlugin) fuzzy-if(skiaContent&&haveTestPlugin,0-1,0-160000) HTTP == plugin-alpha-zindex.html div-alpha-zindex.html
fails-if(!haveTestPlugin) fuzzy-if(skiaContent&&haveTestPlugin,0-1,0-164000) HTTP == plugin-alpha-opacity.html div-alpha-opacity.html
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) fails-if(!haveTestPlugin) HTTP == windowless-clipping-1.html windowless-clipping-1-ref.html # bug 631832
# fuzzy because of anti-aliasing in dashed border
fuzzy(16,256) random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) fails-if(!haveTestPlugin) HTTP == border-padding-1.html border-padding-1-ref.html # bug 629430
fuzzy(16,256) random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) fails-if(!haveTestPlugin) HTTP == border-padding-2.html border-padding-2-ref.html # bug 629430
fuzzy(16,256) random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) skip-if(!haveTestPlugin||Android) HTTP == border-padding-3.html border-padding-3-ref.html # bug 629430 # bug 773482
fuzzy(0-16,0-256) random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) fails-if(!haveTestPlugin) HTTP == border-padding-1.html border-padding-1-ref.html # bug 629430
fuzzy(0-16,0-256) random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) fails-if(!haveTestPlugin) HTTP == border-padding-2.html border-padding-2-ref.html # bug 629430
fuzzy(0-16,0-256) random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) skip-if(!haveTestPlugin||Android) HTTP == border-padding-3.html border-padding-3-ref.html # bug 629430 # bug 773482
# The following two "pluginproblemui-direction" tests are unreliable on all platforms. They should be re-written or replaced.
#random-if(cocoaWidget||d2d||/^Windows\x20NT\x205\.1/.test(http.oscpu)) fails-if(!haveTestPlugin&&!Android) HTTP == pluginproblemui-direction-1.html pluginproblemui-direction-1-ref.html # bug 567367
#random-if(cocoaWidget) fails-if(!haveTestPlugin&&!Android) HTTP == pluginproblemui-direction-2.html pluginproblemui-direction-2-ref.html
fails-if(!haveTestPlugin) fuzzy-if(skiaContent&&haveTestPlugin,1,160000) HTTP == plugin-canvas-alpha-zindex.html div-alpha-zindex.html
fails-if(!haveTestPlugin) fuzzy-if(skiaContent&&haveTestPlugin,1,160000) HTTP == plugin-transform-alpha-zindex.html div-alpha-zindex.html
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) fails-if(!haveTestPlugin) fuzzy-if(skiaContent&&haveTestPlugin,1,160000) HTTP == plugin-busy-alpha-zindex.html div-alpha-zindex.html
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) fails-if(!haveTestPlugin) fuzzy-if(skiaContent&&haveTestPlugin,1,32400) HTTP == plugin-background.html plugin-background-ref.html
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) fails-if(!haveTestPlugin) fuzzy-if(skiaContent&&haveTestPlugin,1,32400) HTTP == plugin-background-1-step.html plugin-background-ref.html
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) fails-if(!haveTestPlugin) fuzzy-if(skiaContent&&haveTestPlugin,1,32400) HTTP == plugin-background-2-step.html plugin-background-ref.html
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) fails-if(!haveTestPlugin) fuzzy-if(skiaContent&&haveTestPlugin,1,32400) HTTP == plugin-background-5-step.html plugin-background-ref.html
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) fails-if(!haveTestPlugin) fuzzy-if(skiaContent&&haveTestPlugin,1,32400) HTTP == plugin-background-10-step.html plugin-background-ref.html
fails-if(!haveTestPlugin) fuzzy-if(skiaContent&&haveTestPlugin,0-1,0-160000) HTTP == plugin-canvas-alpha-zindex.html div-alpha-zindex.html
fails-if(!haveTestPlugin) fuzzy-if(skiaContent&&haveTestPlugin,0-1,0-160000) HTTP == plugin-transform-alpha-zindex.html div-alpha-zindex.html
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) fails-if(!haveTestPlugin) fuzzy-if(skiaContent&&haveTestPlugin,0-1,0-160000) HTTP == plugin-busy-alpha-zindex.html div-alpha-zindex.html
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) fails-if(!haveTestPlugin) fuzzy-if(skiaContent&&haveTestPlugin,0-1,0-32400) HTTP == plugin-background.html plugin-background-ref.html
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) fails-if(!haveTestPlugin) fuzzy-if(skiaContent&&haveTestPlugin,0-1,0-32400) HTTP == plugin-background-1-step.html plugin-background-ref.html
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) fails-if(!haveTestPlugin) fuzzy-if(skiaContent&&haveTestPlugin,0-1,0-32400) HTTP == plugin-background-2-step.html plugin-background-ref.html
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) fails-if(!haveTestPlugin) fuzzy-if(skiaContent&&haveTestPlugin,0-1,0-32400) HTTP == plugin-background-5-step.html plugin-background-ref.html
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) fails-if(!haveTestPlugin) fuzzy-if(skiaContent&&haveTestPlugin,0-1,0-32400) HTTP == plugin-background-10-step.html plugin-background-ref.html
random-if(!haveTestPlugin) HTTP == plugin-transform-1.html plugin-transform-1-ref.html
fails-if(!haveTestPlugin) HTTP == plugin-transform-2.html plugin-transform-2-ref.html
skip-if(!haveTestPlugin) HTTP == shrink-1.html shrink-1-ref.html
Expand Down
4 changes: 2 additions & 2 deletions dom/tests/reftest/reftest.list
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
== bug453105.html bug453105-ref.html
== optiontext.html optiontext-ref.html
== bug456008.xhtml bug456008-ref.html
fuzzy-if(skiaContent,2,3) == bug439965.html bug439965-ref.html
fuzzy-if(skiaContent,0-2,0-3) == bug439965.html bug439965-ref.html
== bug427779.xml bug427779-ref.xml
fuzzy-if(skiaContent,1,5) == bug559996.html bug559996-ref.html
fuzzy-if(skiaContent,0-1,0-5) == bug559996.html bug559996-ref.html
== bug591981-1.html bug591981-ref.html
== bug591981-2.html bug591981-ref.html
== bug592366-1.html bug592366-ref.html
Expand Down
4 changes: 2 additions & 2 deletions dom/vr/test/reftest/reftest.list
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ default-preferences pref(dom.vr.puppet.enabled,true) pref(dom.vr.test.enabled,tr
# Our Windows 7 test machines don't support D3D11.1, so we run these tests on Windows 8+ only.
skip-if((!winWidget&&release_or_beta)||Android||gtkWidget||!layersGPUAccelerated||/^Windows\x20NT\x206\.1/.test(http.oscpu)) == draw_rect.html wrapper.html?draw_rect.png
# On MacOSX platform, getting different color interpolation result.
# For lower resolution Mac hardware, we need to adjust it to fuzzy-if(cocoaWidget,1,1200).
fuzzy-if(/^Windows\x20NT\x2010\.0/.test(http.oscpu)||cocoaWidget,1,600) skip-if((!winWidget&&release_or_beta)||Android||gtkWidget||!layersGPUAccelerated||/^Windows\x20NT\x206\.1/.test(http.oscpu)) == change_size.html wrapper.html?change_size.png
# For lower resolution Mac hardware, we need to adjust it to fuzzy-if(cocoaWidget,0-1,0-1200).
fuzzy-if(/^Windows\x20NT\x2010\.0/.test(http.oscpu)||cocoaWidget,0-1,0-600) skip-if((!winWidget&&release_or_beta)||Android||gtkWidget||!layersGPUAccelerated||/^Windows\x20NT\x206\.1/.test(http.oscpu)) == change_size.html wrapper.html?change_size.png
Loading

0 comments on commit 89847e6

Please sign in to comment.