https://github.com/web-platform-tests/wpt
Revision 1734d700b8e431e4d01690be0558e91d15fc2a79 authored by Andreas Tolfsen on 13 April 2018, 13:33:50 UTC, committed by moz-wptsync-bot on 13 April 2018, 13:33:50 UTC
Ports tests added to Marionette in bug 1284232 to WPT.  These test that
the Arguments, Array, FileList, HTMLAllCollection, HTMLCollection,
HTMLFormControlsCollection, HTMLOptionsCollection, and NodeList
collections are properly serialised when returned from an injected script.

There is one failing test that needs more investigation.  My current
suspicion is that it is a JavaScript bug.
bugzilla-url: https://bugzilla.mozilla.org/show_bug.cgi?id=1453009
gecko-commit: 172094bca9a6e2f841e629aae292647e212d92c6
gecko-integration-branch: central
gecko-reviewers: whimboo
1 parent 4c8580c
Raw File
Tip revision: 1734d700b8e431e4d01690be0558e91d15fc2a79 authored by Andreas Tolfsen on 13 April 2018, 13:33:50 UTC
Test serialisation of collections in wdspec.
Tip revision: 1734d70
animated-png-timeout.html
<html class="reftest-wait">
<title>APNG: Second frame displays quickly, replacing red with green.</title>
<link rel="match" href="animated-png-timeout-ref.html"/>
<img src=../images/apng.png onload="loaded()"/>
<script>
  function loaded() {
    setTimeout(function() {
      document.documentElement.classList.remove("reftest-wait");
    }, 1000);
  }
</script>
back to top