Changeset 57501 in webkit


Ignore:
Timestamp:
Apr 12, 2010 9:52:59 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-04-12 Daniel Bates <dbates@rim.com>

Reviewed by Adam Barth.

https://bugs.webkit.org/show_bug.cgi?id=37480

Implements all of the non-encoding specific query string tests from
<http://code.google.com/p/google-url/source/browse/trunk/src/url_canon_unittest.cc#1016>.

Also, moved JavaScript function canonicalize to external JavaScript
script /resources/utilities.js since this function is being called
by tests ipv4.html, query.html, and trivial.html.

  • fast/url/ipv4.html:
  • fast/url/query-expected.txt: Added.
  • fast/url/query.html: Added.
  • fast/url/resources: Added.
  • fast/url/resources/utilities.js: Added. (canonicalize):
  • fast/url/script-tests/TEMPLATE.html: Include external JavaScript script resources/utilities.js.
  • fast/url/script-tests/query.js: Added.
  • fast/url/trivial.html:
Location:
trunk/LayoutTests
Files:
4 added
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r57498 r57501  
     12010-04-12  Daniel Bates  <dbates@rim.com>
     2
     3        Reviewed by Adam Barth.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=37480
     6
     7        Implements all of the non-encoding specific query string tests from
     8        <http://code.google.com/p/google-url/source/browse/trunk/src/url_canon_unittest.cc#1016>.
     9
     10        Also, moved JavaScript function canonicalize to external JavaScript
     11        script /resources/utilities.js since this function is being called
     12        by tests ipv4.html, query.html, and trivial.html.
     13
     14        * fast/url/ipv4.html:
     15        * fast/url/query-expected.txt: Added.
     16        * fast/url/query.html: Added.
     17        * fast/url/resources: Added.
     18        * fast/url/resources/utilities.js: Added.
     19        (canonicalize):
     20        * fast/url/script-tests/TEMPLATE.html: Include external JavaScript script resources/utilities.js.
     21        * fast/url/script-tests/query.js: Added.
     22        * fast/url/trivial.html:
     23
    1242010-04-12  Dumitru Daniliuc  <dumi@chromium.org>
    225
  • trunk/LayoutTests/fast/url/ipv4.html

    r57489 r57501  
    44<link rel="stylesheet" href="../js/resources/js-test-style.css">
    55<script src="../js/resources/js-test-pre.js"></script>
     6<script src="resources/utilities.js"></script>
    67</head>
    78<body>
  • trunk/LayoutTests/fast/url/query.html

    r57500 r57501  
    44<link rel="stylesheet" href="../js/resources/js-test-style.css">
    55<script src="../js/resources/js-test-pre.js"></script>
     6<script src="resources/utilities.js"></script>
    67</head>
    78<body>
    89<p id="description"></p>
    910<div id="console"></div>
    10 <script src="script-tests/trivial.js"></script>
     11<script src="script-tests/query.js"></script>
    1112<script src="../js/resources/js-test-post.js"></script>
    1213</body>
  • trunk/LayoutTests/fast/url/script-tests/TEMPLATE.html

    r57488 r57501  
    44<link rel="stylesheet" href="../js/resources/js-test-style.css">
    55<script src="../js/resources/js-test-pre.js"></script>
     6<script src="resources/utilities.js"></script>
    67</head>
    78<body>
  • trunk/LayoutTests/fast/url/trivial.html

    r57488 r57501  
    44<link rel="stylesheet" href="../js/resources/js-test-style.css">
    55<script src="../js/resources/js-test-pre.js"></script>
     6<script src="resources/utilities.js"></script>
    67</head>
    78<body>
Note: See TracChangeset for help on using the changeset viewer.