Re: [html-tests] Fix #2358: Test meta refresh parsing (#2361)

@domenic ok

```diff
@@ -41,7 +41,11 @@ var tests_arr = [
   {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  ,  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']},
@@ -60,6 +64,11 @@ var tests_arr = [
   {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: []},
```

View on GitHub: https://github.com/w3c/web-platform-tests/pull/2361#issuecomment-159328146

Received on Tuesday, 24 November 2015 16:35:57 UTC