Changeset 156161 in webkit


Ignore:
Timestamp:
Sep 20, 2013 7:43:15 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

Modified img src and srcset encoded URL tests
https://bugs.webkit.org/show_bug.cgi?id=121677

Previous tests have broken the Windows builds, since '?' is not a valid char.
Moved to using '@'

Patch by Yoav Weiss <yoav@yoav.ws> on 2013-09-20
Reviewed by Anders Carlsson.

  • fast/hidpi/image-srcset-encoded-expected.txt: Renamed from LayoutTests/fast/hidpi/image-srcset-question-mark-expected.txt.
  • fast/hidpi/image-srcset-encoded.html: Renamed from LayoutTests/fast/hidpi/image-srcset-question-mark.html.
  • fast/hidpi/resources/image@test.png: Renamed from LayoutTests/fast/hidpi/resources/image?test.png.
  • fast/loader/image-src-encoded-expected.txt: Renamed from LayoutTests/fast/loader/image-src-question-mark-expected.txt.
  • fast/loader/resources/image@test.png: Renamed from LayoutTests/fast/loader/resources/image?test.png.
Location:
trunk/LayoutTests
Files:
1 edited
5 moved

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r156160 r156161  
     12013-09-20  Yoav Weiss  <yoav@yoav.ws>
     2
     3        Modified img src and srcset encoded URL tests
     4        https://bugs.webkit.org/show_bug.cgi?id=121677
     5
     6        Previous tests have broken the Windows builds, since '?' is not a valid char.
     7        Moved to using '@'
     8
     9        Reviewed by Anders Carlsson.
     10
     11        * fast/hidpi/image-srcset-encoded-expected.txt: Renamed from LayoutTests/fast/hidpi/image-srcset-question-mark-expected.txt.
     12        * fast/hidpi/image-srcset-encoded.html: Renamed from LayoutTests/fast/hidpi/image-srcset-question-mark.html.
     13        * fast/hidpi/resources/image@test.png: Renamed from LayoutTests/fast/hidpi/resources/image?test.png.
     14        * fast/loader/image-src-encoded-expected.txt: Renamed from LayoutTests/fast/loader/image-src-question-mark-expected.txt.
     15        * fast/loader/resources/image@test.png: Renamed from LayoutTests/fast/loader/resources/image?test.png.
     16
    1172013-09-20  Gabor Abraham  <abrhm@inf.u-szeged.hu>
    218
  • trunk/LayoutTests/fast/hidpi/image-srcset-encoded.html

    r156160 r156161  
    33        <script src="../../resources/js-test-pre.js"></script>
    44        <script>
    5              if (window.testRunner) {
    6                  testRunner.dumpAsText();
    7              }
    8 
    95             addEventListener("load", function() {
    106                 shouldBeTrue('document.getElementById("foo").clientWidth==25');
     
    1511    <body id="body">
    1612        <div>This test passes if the image below is displayed.</div>
    17         <img id="foo" srcset="resources/image%3Ftest.png">
     13        <img id="foo" srcset="resources/image%40test.png">
    1814    </body>
    1915</html>
Note: See TracChangeset for help on using the changeset viewer.