Revision 5e78f769b58842d55ff8d2dc961d9db5a81f769a authored by Eric Willigers on 04 July 2018, 04:36:49 UTC, committed by Eric Willigers on 04 September 2018, 21:58:33 UTC
Spec: https://drafts.csswg.org/css-grid/

These tests highlight the following 5 issues:

Spec
[cssom] [css-grid] Serialization of custom identifiers
https://github.com/w3c/csswg-drafts/issues/2858

Spec
[css-grid] grid-line custom identifier auto?
https://github.com/w3c/csswg-drafts/issues/2856

Edge
grid-area should reject non-integer numbers
https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/18112694/

Firefox
grid-auto-columns/rows should accept multiple track-size values
https://bugzilla.mozilla.org/show_bug.cgi?id=1339672

WebKit
[CSS Grid Layout] Fix grid-{row, column, area} shorthand CSSOM serialization
https://bugs.webkit.org/show_bug.cgi?id=149890

Note that some properties such as grid and grid-template are not yet tested.
1 parent 61bc4ec
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