- From: Simon Pieters <web-platform-tests-notifications@w3.org>
- Date: Tue, 24 Nov 2015 16:35:49 GMT
- To: public-web-platform-tests-notifications@w3.org
@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