Changeset 94796 in webkit


Ignore:
Timestamp:
Sep 8, 2011 2:00:05 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

frame-loading-via-document-write.html test cases have extra slash in path
https://bugs.webkit.org/show_bug.cgi?id=67784

Removing extra slash in path: file:////tmp/... => file:///tmp/...

Patch by Jarred Nicholls <jarred@sencha.com> on 2011-09-08
Reviewed by Andreas Kling.

  • fast/dom/frame-loading-via-document-write.html:
  • http/tests/security/frame-loading-via-document-write.html:
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r94794 r94796  
     12011-09-08  Jarred Nicholls  <jarred@sencha.com>
     2
     3        frame-loading-via-document-write.html test cases have extra slash in path
     4        https://bugs.webkit.org/show_bug.cgi?id=67784
     5       
     6        Removing extra slash in path: file:////tmp/... => file:///tmp/...
     7
     8        Reviewed by Andreas Kling.
     9
     10        * fast/dom/frame-loading-via-document-write.html:
     11        * http/tests/security/frame-loading-via-document-write.html:
     12
    1132011-09-08  Alexey Proskuryakov  <ap@apple.com>
    214
  • trunk/LayoutTests/fast/dom/frame-loading-via-document-write.html

    r66472 r94796  
    3333    frames['topRow'].document.close();
    3434
    35     var localImageLocation = "file:////tmp/LayoutTests/fast/dom/resources/abe.png";
     35    var localImageLocation = "file:///tmp/LayoutTests/fast/dom/resources/abe.png";
    3636    if (window.layoutTestController)
    3737        localImageLocation = layoutTestController.pathToLocalResource(localImageLocation);
  • trunk/LayoutTests/http/tests/security/frame-loading-via-document-write.html

    r60824 r94796  
    3333    frames['topRow'].document.close();
    3434
    35     var localImageLocation = "file:////tmp/LayoutTests/fast/dom/resources/abe.png";
     35    var localImageLocation = "file:///tmp/LayoutTests/fast/dom/resources/abe.png";
    3636    if (window.layoutTestController)
    3737        localImageLocation = layoutTestController.pathToLocalResource(localImageLocation);
Note: See TracChangeset for help on using the changeset viewer.