Revision 2d4fbd417e6772267c7755004e1022801fd3b92e authored by kaixinjxq on 12 April 2018, 02:28:33 UTC, committed by TAMURA, Kent on 12 April 2018, 02:28:33 UTC
* Add tests for liveness of NodeLists/HTMLCollections

 - Node#childNodes
 - ParentNode#children
 - {Document,Element}#getElementsByTagName
 - {Document,Element}#getElementsByTagNameNS
 - {Document,Element}#getElementsByClassName
 - Document#images
 - Document#embeds
 - Document#plugins
 - Document#links
 - Document#forms
 - Document#scripts
 - Document#getElementsByName

* Move liveness tests to each of API test files

* Fixed a nit issue

* Modify the test description
1 parent 7bbb8d0
Raw File
preload-image-png-mislabeled-as-html-nosniff.tentative.sub.html
<!DOCTYPE html>
<!-- This test verifies observable CORB impact on <link rel="preload"> elements.
-->
<meta charset="utf-8">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>

<script>
async_test(function(t) {
  // With CORB the link.onerror event will be reached
  // (because CORB will block the cross-origin preload).
  window.preloadErrorEvent = t.step_func_done();

  // Without CORB the link.onload event will be reached.
  window.preloadLoadEvent = t.unreached_func("link/preload onload event reached.");
});
</script>

<!-- www1 is cross-origin, so the HTTP response is CORB-eligible -->
<link rel="preload" as="image"
      onerror="window.preloadErrorEvent()"
      onload="window.preloadLoadEvent()"
      href="http://{{domains[www1]}}:{{ports[http][0]}}/fetch/corb/resources/png-mislabeled-as-html-nosniff.png">
back to top