https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 3c16faaf66049b0a5d63a39964370037388c3a96 authored by Jonathon Kereliuk on 27 March 2018, 14:59:21 UTC
fix capabilities and IWYU
Tip revision: 3c16faa
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