Revision c597cee7678a37f623dace0cd03d652b992daa36 authored by Robert Ma on 23 July 2018, 20:28:35 UTC, committed by Robert Ma on 23 July 2018, 20:46:03 UTC
This reverts commit c8f456094ec0b31d11e1601082d2f76268e75ce4.
1 parent c8f4560
Raw File
xmldomparser.html
<!doctype html>
<meta charset="utf-8">
<title>XML Dom Parse readyState Test</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
    test(function () {
        assert_equals(
            (new DOMParser()).parseFromString("<html></html>", "text/xml").readyState,
            "complete"
        );
    });
</script>
back to top