Changeset 24513 in webkit


Ignore:
Timestamp:
Jul 21, 2007 3:29:46 PM (17 years ago)
Author:
weinig
Message:

Reviewed by Sam Weinig.

  • fixed typos and markup in the following manual tests
  • manual-tests/accidental-strict-mode.html:
  • manual-tests/caretScrolling.html:
  • manual-tests/close-on-closedWindow.html:
Location:
trunk/WebCore
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r24512 r24513  
     12007-07-21  Mitz Pettel  <mitz@webkit.org>
     2
     3        Reviewed by Sam Weinig.
     4
     5        - fixed typos and markup in the following manual tests
     6
     7        * manual-tests/accidental-strict-mode.html:
     8        * manual-tests/caretScrolling.html:
     9        * manual-tests/close-on-closedWindow.html:
     10
    1112007-07-21  Sam Weinig  <sam@webkit.org>
    212
  • trunk/WebCore/manual-tests/accidental-strict-mode.html

    r20304 r24513  
    1 <p>This tests for regression against <a href="http://bugs.webkit.org/show_bug.cgi?id=7102">REGRESSION: parse mode gets set to strict after going back from non-HTML content</p>
     1<p>This tests for regression against <a href="http://bugs.webkit.org/show_bug.cgi?id=7102">REGRESSION: parse mode gets set to strict after going back from non-HTML content</a></p>
    22
    33<ol>
  • trunk/WebCore/manual-tests/caretScrolling.html

    r11995 r24513  
    11<html>
    2 <p>Manual test for fix for <a href="rdar://problem/3690705">rdar://problem/3690705></a> "caret does not move when scrolling overflow: auto editable area"</p>
     2<p>Manual test for fix for <a href="rdar://problem/3690705">rdar://problem/3690705</a> "caret does not move when scrolling overflow: auto editable area"</p>
    33<p>
    44Click inside the block below, a caret should appear.  Grab the block's scroll handle and scroll down.  The caret blinks, try to grab the scroll handle while the caret is visible.  The caret should scroll and disappear when it reaches the block's border.
  • trunk/WebCore/manual-tests/close-on-closedWindow.html

    r11995 r24513  
    55</head>
    66<body>
    7 <p><b>BUG ID:</b> <a href="rdar://problem/4094363"> Can't re-open a window at capripalace.com website because "close" fails on already-closed iwndow">4094363</a> Can't re-open a window at capripalace.com website because "close" fails on already-closed iwndow</p>
     7<p><b>BUG ID:</b> <a href="rdar://problem/4094363">rdar://problem/4094363</a> Can't re-open a window at capripalace.com website because "close" fails on already-closed window</p>
    88
    99<p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b>
    1010<ol>
    11         <li>Click the link below </li>
    12         <li>Close the window that opens </li>
    13         <li>Click the link again </li>
     11    <li>Click the link below </li>
     12    <li>Close the window that opens </li>
     13    <li>Click the link again </li>
    1414</ol>
    1515</p>
     
    2727function win_open() {
    2828
    29         if (win != null) {
    30                 win.close();
    31         }
    32         win = window.open('about:blank');
     29    if (win != null) {
     30        win.close();
     31    }
     32    win = window.open('about:blank');
    3333}
    3434</script>
Note: See TracChangeset for help on using the changeset viewer.