Revision b0f0ef9adb50765ea38be619015bb061d6a224b6 authored by Mustaq Ahmed on 27 June 2018, 15:33:46 UTC, committed by Blink WPT Bot on 27 June 2018, 15:42:47 UTC
With User Activation v2, activating a parent frame doesn't activate
its subframes.  We fixed these two tests by sending the click to
subframes.  This needed a workaround in auto-click.js because
the mutation observer there in doesn't seem to work when a button
element is added to a subframe.

Bug: 802371
Change-Id: I786668c87b802565e99ad16223cafc8ac1fd6296
Reviewed-on: https://chromium-review.googlesource.com/868323
Reviewed-by: Navid Zolghadr <nzolghadr@chromium.org>
Commit-Queue: Mustaq Ahmed <mustaq@chromium.org>
Cr-Commit-Position: refs/heads/master@{#570778}
1 parent b44c265
Raw File
xmlhttprequest-basic.htm
<!doctype html>
<html>
  <head>
    <title>XMLHttpRequest: prototype and members</title>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
    <link rel="help" href="https://xhr.spec.whatwg.org/#dom-xmlhttprequest" data-tested-assertations="following::ol/li[1]" />
    <link rel="help" href="https://xhr.spec.whatwg.org/#xmlhttprequest" data-tested-assertations="." />
    <link rel="help" href="https://xhr.spec.whatwg.org/#states" data-tested-assertations="following::dfn[2] following::dfn[3] following::dfn[4] following::dfn[5] following::dfn[6]" />
  </head>
  <body>
    <div id="log"></div>
    <script>
      test(function() {
        XMLHttpRequest.prototype.test = function() { return "TEH" }
        var client = new XMLHttpRequest()
        assert_equals(client.test(), "TEH")
        var members = ["onreadystatechange",
                       "open",
                       "setRequestHeader",
                       "send",
                       "abort",
                       "status",
                       "statusText",
                       "getResponseHeader",
                       "getAllResponseHeaders",
                       "responseText",
                       "responseXML"]
        for(var x in members)
          assert_true(members[x] in client, members[x])
        var constants = ["UNSENT",
                         "OPENED",
                         "HEADERS_RECEIVED",
                         "LOADING",
                         "DONE"],
            i = 0
        for(var x in constants) {
          assert_equals(client[constants[x]], i, constants[x])
          assert_equals(XMLHttpRequest[constants[x]], i, "XHR " + constants[x])
          i++
        }
      })
    </script>
  </body>
</html>
back to top