chromium/third_party/blink/web_tests/external/wpt/html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/parsing.html

<!doctype html>
<meta charset=utf-8>
<meta name="variant" content="?1-10">
<meta name="variant" content="?11-20">
<meta name="variant" content="?21-30">
<meta name="variant" content="?31-40">
<meta name="variant" content="?41-50">
<meta name="variant" content="?51-60">
<meta name="variant" content="?61-70">
<meta name="variant" content="?71-80">
<meta name="variant" content="?81-90">
<meta name="variant" content="?91-100">
<meta name="variant" content="?101-110">
<meta name="variant" content="?111-120">
<meta name="variant" content="?121-130">
<meta name="variant" content="?131-last">
<title>Parsing of meta refresh</title>
<meta name="timeout" content="long">
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src=/common/subset-tests.js></script>
<style>
iframe { display:none }
</style>
<body>
<script>

// failure to parse is []
// success to parse is [time, url] where url is unresolved

var tests_arr = [
  {input: '', expected: []},
  {input: '1', expected: [1, '__filename__']},
  {input: '1 ', expected: [1, '__filename__']},
  {input: '1\t', expected: [1, '__filename__']},
  {input: '1\r', expected: [1, '__filename__']},
  {input: '1\n', expected: [1, '__filename__']},
  {input: '1\f', expected: [1, '__filename__']},
  {input: '1;', expected: [1, '__filename__']},
  {input: '1,', expected: [1, '__filename__']},
  {input: '1; url=foo', expected: [1, 'foo']},
  {input: '1, url=foo', expected: [1, 'foo']},
  {input: '1 url=foo', expected: [1, 'foo']},
  {input: '1;\turl=foo', expected: [1, 'foo']},
  {input: '1,\turl=foo', expected: [1, 'foo']},
  {input: '1\turl=foo', expected: [1, 'foo']},
  {input: '1;\rurl=foo', expected: [1, 'foo']},
  {input: '1,\rurl=foo', expected: [1, 'foo']},
  {input: '1\rurl=foo', expected: [1, 'foo']},
  {input: '1;\nurl=foo', expected: [1, 'foo']},
  {input: '1,\nurl=foo', expected: [1, 'foo']},
  {input: '1\nurl=foo', expected: [1, 'foo']},
  {input: '1;\furl=foo', expected: [1, 'foo']},
  {input: '1,\furl=foo', expected: [1, 'foo']},
  {input: '1\furl=foo', expected: [1, 'foo']},
  {input: '1url=foo', expected: []},
  {input: '1x;url=foo', expected: []},
  {input: '1 x;url=foo', expected: [1, 'x;url=foo']},
  {input: '1;;url=foo', expected: [1, ';url=foo']},
  {input: '  1  ;  url  =  foo', expected: [1, 'foo']},
  {input: '  1  ,  url  =  foo', expected: [1, 'foo']},
  {input: '  1  ;  foo', expected: [1, 'foo']},
  {input: '  1  ,  foo', expected: [1, 'foo']},
  {input: '  1  url  =  foo', expected: [1, 'foo']},
  {input: '1; url=foo ', expected: [1, 'foo']},
  {input: '1; url=f\to\no', expected: [1, 'foo']},
  {input: '1; url="foo"bar', expected: [1, 'foo']},
  {input: '1; url=\'foo\'bar', expected: [1, 'foo']},
  {input: '1; url="foo\'bar', expected: [1, 'foo\'bar']},
  {input: '1; url foo', expected: [1, 'url foo']},
  {input: '1; urlfoo', expected: [1, 'urlfoo']},
  {input: '1; urfoo', expected: [1, 'urfoo']},
  {input: '1; ufoo', expected: [1, 'ufoo']},
  {input: '1; "foo"bar', expected: [1, 'foo']},
  {input: '; foo', expected: []},
  {input: ';foo', expected: []},
  {input: ', foo', expected: []},
  {input: ',foo', expected: []},
  {input: 'foo', expected: []},
  {input: '+1; url=foo', expected: []},
  {input: '-1; url=foo', expected: []},
  {input: '+0; url=foo', expected: []},
  {input: '-0; url=foo', expected: []},
  {input: '0; url=foo', expected: [0, 'foo']},
  {input: '+1; foo', expected: []},
  {input: '-1; foo', expected: []},
  {input: '+0; foo', expected: []},
  {input: '-0; foo', expected: []},
  {input: '0; foo', expected: [0, 'foo']},
  {input: '+1', expected: []},
  {input: '-1', expected: []},
  {input: '+0', expected: []},
  {input: '-0', expected: []},
  {input: '0', expected: [0, '__filename__']},
  {input: '1.9; url=foo', expected: [1, 'foo']},
  {input: '1.9..5.; url=foo', expected: [1, 'foo']},
  {input: '.9; url=foo', expected: [0, 'foo']},
  {input: '0.9; url=foo', expected: [0, 'foo']},
  {input: '0...9; url=foo', expected: [0, 'foo']},
  {input: '0...; url=foo', expected: [0, 'foo']},
  {input: '1e0; url=foo', expected: []},
  {input: '1e1; url=foo', expected: []},
  {input: '10e-1; url=foo', expected: []},
  {input: '-0.1; url=foo', expected: []},
];

tests_arr.forEach(function(test_obj) {
  ["<meta>", "Refresh header"].forEach(type => {
    if(type === "Refresh header" && test_obj.input.match("[\n\r\f]")) { // See https://github.com/web-platform-tests/wpt/issues/8372 for why \f as well
      return;
    }
    const filename = type === "<meta>" ? "refresh.sub.html" : "refresh.py";
    subsetTest(async_test, function(t) {
      var iframe = document.createElement('iframe');
      t.add_cleanup(function() {
        document.body.removeChild(iframe);
      });
      iframe.src = "support/" + filename + "?input=" + encodeURIComponent(test_obj.input);
      document.body.appendChild(iframe);
      var loadCount = 0;
      iframe.onload = t.step_func(function() {
        loadCount++;
        var got = iframe.contentDocument.body.textContent.trim();
        if (test_obj.expected.length === 0) {
          assert_equals(got, filename);
          if (loadCount === 1) {
            t.step_timeout(function() {
              t.done();
            }, 3000); // want to make sure it doesn't redirect when it shouldn't
          } else {
            assert_unreached('Got > 1 load events');
          }
        } else {
          if (loadCount === 2) {
            if(test_obj.expected[1] === "__filename__") {
              assert_equals(got, filename);
            } else {
              assert_equals(got, test_obj.expected[1]);
            }
            t.done();
          }
        }
      });
    }, type + ": " + format_value(test_obj.input));
  });
});
</script>