Changeset 30456 in webkit
- Timestamp:
- Feb 20, 2008, 11:54:57 PM (18 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r30455 r30456 1 2008-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 1 10 2008-02-20 Dan Bernstein <mitz@apple.com> 2 11 -
trunk/LayoutTests/fast/tokenizer/doctype-search-reset.html
r30455 r30456 6 6 var target = document.getElementById("target"); 7 7 var result = document.getElementById("result"); 8 if ( HTMLDivElement.prototype.isPrototypeOf(target))8 if (target instanceof HTMLDivElement) 9 9 result.innerText = "PASS"; 10 10 else
Note:
See TracChangeset
for help on using the changeset viewer.