MemoryCachePruneWithinResourceLoadDelegate.html 241 B

1234567891011121314
  1. <script>
  2. function loaded()
  3. {
  4. var request = new XMLHttpRequest();
  5. request.open('GET', 'http://www.iana.org/domains/example/', true);
  6. request.send(null);
  7. }
  8. </script>
  9. <body onload="loaded();">
  10. We will do some XHR'ing now!
  11. </body>