Changeset 53268 in webkit


Ignore:
Timestamp:
Jan 14, 2010 8:09:37 AM (14 years ago)
Author:
Adam Roben
Message:

Fix a typo in editing/selection/inactive-selection.html

Fixes <http://webkit.org/b/33676> Exception when opening
editing/selection/inactive-selection.html in a browser

Reviewed by Dan Bernstein.

  • editing/selection/inactive-selection.html: Remove a semicolon that

was making the if (window.layoutTestController) test ineffective.

Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r53258 r53268  
     12010-01-14  Adam Roben  <aroben@apple.com>
     2
     3        Fix a typo in editing/selection/inactive-selection.html
     4
     5        Fixes <http://webkit.org/b/33676> Exception when opening
     6        editing/selection/inactive-selection.html in a browser
     7
     8        Reviewed by Dan Bernstein.
     9
     10        * editing/selection/inactive-selection.html: Remove a semicolon that
     11        was making the if (window.layoutTestController) test ineffective.
     12
    1132010-01-13  Philippe Normand  <pnormand@igalia.com>
    214
  • trunk/LayoutTests/editing/selection/inactive-selection.html

    r18229 r53268  
    1010<script>
    1111window.onload = function() {
    12     if (window.layoutTestController);
     12    if (window.layoutTestController)
    1313        layoutTestController.dumpAsText();
    1414       
Note: See TracChangeset for help on using the changeset viewer.