Changeset 71020 in webkit


Ignore:
Timestamp:
Nov 1, 2010 7:26:27 AM (13 years ago)
Author:
jorlow@chromium.org
Message:

2010-11-01 Jeremy Orlow <jorlow@chromium.org>

Reviewed by Steve Block.

Fix IndexedDB layout test
https://bugs.webkit.org/show_bug.cgi?id=48644

This test needs to be async. Also clean up a few other things like
using a logger div rather than document.write.

  • storage/indexeddb/tutorial-expected.txt:
  • storage/indexeddb/tutorial.html:
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r71019 r71020  
     12010-11-01  Jeremy Orlow  <jorlow@chromium.org>
     2
     3        Reviewed by Steve Block.
     4
     5        Fix IndexedDB layout test
     6        https://bugs.webkit.org/show_bug.cgi?id=48644
     7
     8        This test needs to be async. Also clean up a few other things like
     9        using a logger div rather than document.write.
     10
     11        * storage/indexeddb/tutorial-expected.txt:
     12        * storage/indexeddb/tutorial.html:
     13
    1142010-11-01  Leandro Gracia Gil  <leandrogracia@google.com>
    215
  • trunk/LayoutTests/storage/indexeddb/tutorial-expected.txt

    r70887 r71020  
    1 All done!
     1Please view source for more information on what this is doing and why...
    22
     3Everything worked!
     4
  • trunk/LayoutTests/storage/indexeddb/tutorial.html

    r70887 r71020  
    2525// serves as a living document describing what's expected to work and how within WebKit so it
    2626// seems well worth having checked in.
    27 if (window.layoutTestController)
    28     layoutTestController.dumpAsText(true);
     27if (window.layoutTestController) {
     28    layoutTestController.dumpAsText();
     29    layoutTestController.waitUntilDone();
     30}
    2931
    3032
     
    5254function log(txt)
    5355{
    54     document.write(txt + "<br>");
     56    document.getElementById("logger").innerHTML += txt + "<br>";
    5557}
    5658
     
    395397{
    396398    log("Everything worked!");
     399    layoutTestController.notifyDone();
    397400}
    398401
     
    430433<body onload="start()">
    431434Please view source for more information on what this is doing and why...<br><br>
     435<div id="logger"></div>
    432436</body>
    433437</html>
Note: See TracChangeset for help on using the changeset viewer.