Changeset 206215 in webkit


Ignore:
Timestamp:
Sep 21, 2016 10:20:44 AM (8 years ago)
Author:
jer.noble@apple.com
Message:

Unreviewed gardening; after r206208, update url-null.html test to reflect current (specced) behavior.

  • fast/files/url-null-expected.txt:
  • fast/files/url-null.html:
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r206210 r206215  
     12016-09-21  Jer Noble  <jer.noble@apple.com>
     2
     3        Unreviewed gardening; after r206208, update url-null.html test to reflect current (specced) behavior.
     4
     5        * fast/files/url-null-expected.txt:
     6        * fast/files/url-null.html:
     7
    182016-09-21  Jer Noble  <jer.noble@apple.com>
    29
  • trunk/LayoutTests/fast/files/url-null-expected.txt

    r125149 r206215  
    33On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
    44
    5 PASS URL.createObjectURL(null) is null
     5PASS URL.createObjectURL(null) threw exception TypeError: Type error.
    66URL.revokeObjectURL(null)
    77PASS successfullyParsed is true
  • trunk/LayoutTests/fast/files/url-null.html

    r155410 r206215  
    1010description("Test URL methods with null arguments.");
    1111
    12 shouldBe("URL.createObjectURL(null)", "null");
     12shouldThrowErrorName("URL.createObjectURL(null)", "TypeError");
    1313evalAndLog("URL.revokeObjectURL(null)");
    1414var successfullyParsed = true;
Note: See TracChangeset for help on using the changeset viewer.