Changeset 30456 in webkit


Ignore:
Timestamp:
Feb 20, 2008, 11:54:57 PM (18 years ago)
Author:
weinig@apple.com
Message:

Rubber-stamped by Dan Bernstein.

Gratuitous change to this test to use the instanceof operator
instead of the isPrototypeOf method.

  • fast/tokenizer/doctype-search-reset.html:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r30455 r30456  
     12008-02-20  Sam Weinig  <sam@webkit.org>
     2
     3        Rubber-stamped by Dan Bernstein.
     4
     5        Gratuitous change to this test to use the instanceof operator
     6        instead of the isPrototypeOf method.
     7
     8        * fast/tokenizer/doctype-search-reset.html:
     9
    1102008-02-20  Dan Bernstein  <mitz@apple.com>
    211
  • trunk/LayoutTests/fast/tokenizer/doctype-search-reset.html

    r30455 r30456  
    66    var target = document.getElementById("target");
    77    var result = document.getElementById("result");
    8     if (HTMLDivElement.prototype.isPrototypeOf(target))
     8    if (target instanceof HTMLDivElement)
    99        result.innerText = "PASS";
    1010    else
Note: See TracChangeset for help on using the changeset viewer.