https://github.com/web-platform-tests/wpt
Raw File
Tip revision: f2aec0f81748fe3550e283d4787bb703dc37626c authored by moz-wptsync-bot on 13 March 2018, 19:13:05 UTC
part 3. Move the .links getter from HTMLDocument to Document.
Tip revision: f2aec0f
basic-auth-cache-test.html
<!doctype html>
<html id="doc" class="reftest-wait">
  <meta charset="utf-8">
  <link rel="match" href="basic-auth-cache-test-ref.html">

  <img id="auth" onload="loadNoAuth()">
  <img id="noauth" onload="removeWait()">


  <script type="text/javascript">
    function loadAuth() {
        var authUrl = 'http://testuser:testpass@' + window.location.host + '/http/resources/securedimage.py';
        document.getElementById('auth').src = authUrl;
    }

    function loadNoAuth() {
        var noAuthUrl = 'http://' + window.location.host + '/http/resources/securedimage.py';
        document.getElementById('noauth').src = noAuthUrl;
    }

    function removeWait() {
        document.getElementById('doc').className = "";
    }

    window.onload = loadAuth;
  </script>
</html>
back to top