Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(289)

Side by Side Diff: LayoutTests/media/track/opera/track/webvtt/parsing-cue-data/tests/entities.html

Issue 77553004: Defer setting type in the WebVTT tokenizer until emitting the token (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!doctype html>
2 <title>WebVTT cue data parser test entities</title>
3 <style>video { display:none }</style>
4 <script src=../../../../../../../resources/testharness.js></script>
5 <script src=../../../../../../../resources/testharnessreport.js></script>
6 <script src=../common.js></script>
7 <p>WebVTT cue data parser test entities</p>
8 <div id=log></div>
9 <script>
10 runTests([
11 {name:'3686fc0cdc60dc536e75df054b0bd372273db2cc', input:'%26', expected:'%23docu ment-fragment%0A%7C%20%22%26%22'},
12 {name:'f1869f6e2853635eec81cc3afa3e2b8148ccbdc0', input:'%26amp', expected:'%23d ocument-fragment%0A%7C%20%22%26amp%22'},
13 {name:'92d76530d723b6b4e4ef8280c01cf1c80f9bebdb', input:'%26amp%3B', expected:'% 23document-fragment%0A%7C%20%22%26%22'},
14 {name:'261cd4e9df4a12535b66a0c39e9635aab2bb19aa', input:'%26AMP%3B', expected:'% 23document-fragment%0A%7C%20%22%26AMP%3B%22'},
15 {name:'1a2269cdb73bf97ec6a99b0edabfe646c471b67e', input:'%26lt%3B', expected:'%2 3document-fragment%0A%7C%20%22%3C%22'},
16 {name:'44ceb90884cceeeccb4f7024e3598f7dc5ceebfa', input:'%26gt%3B', expected:'%2 3document-fragment%0A%7C%20%22%3E%22'},
17 {name:'05def72af03fc2b1617da950d871b9fd0ba20e5a', input:'a%26lrm%3Bb', expected: '%23document-fragment%0A%7C%20%22a%E2%80%8Eb%22'},
18 {name:'da999a55445eca43aa41e039ec439c1a812db297', input:'a%26rlm%3Bb', expected: '%23document-fragment%0A%7C%20%22a%E2%80%8Fb%22'},
19 {name:'0fd9e3823b62c028c1d50e35b1f3ee3df02a62eb', input:'%26quot%3B', expected:' %23document-fragment%0A%7C%20%22%26quot%3B%22'},
20 {name:'e7387003fbacb22b706796c98b781eb4ebf5ff85', input:'%26nbsp%3B', expected:' %23document-fragment%0A%7C%20%22%C2%A0%22'},
21 {name:'216cd0e914b9f2ccd04eff6d02a0b1ce24441d95', input:'%26copy%3B', expected:' %23document-fragment%0A%7C%20%22%26copy%3B%22'},
22 {name:'2cdf20980d17a5d077299215e6a7e97f3c6b07e2', input:'%26%26', expected:'%23d ocument-fragment%0A%7C%20%22%26%26%22'},
23 {name:'83f4500c0bd8598480713997a041d8f70fd3f11e', input:'%261', expected:'%23doc ument-fragment%0A%7C%20%22%261%22'},
24 {name:'2c6b2ba38a08eca45370f28a5b7df2aa463fb3dc', input:'%261%3B', expected:'%23 document-fragment%0A%7C%20%22%261%3B%22'},
25 {name:'f4bb977c0a06851bdd19260c035a766c5c8ea093', input:'%26%3C', expected:'%23d ocument-fragment%0A%7C%20%22%26%22'},
26 {name:'b1fff1ac42688d16e00f6c758d84e5152e39702d', input:'%26%3Cc', expected:'%23 document-fragment%0A%7C%20%22%26%22%0A%7C%20%3Cspan%3E'},
27 {name:'bd68f6beda2c2264e61dff7359c1ad48bc0a9934', input:'%26%2332%3B', expected: '%23document-fragment%0A%7C%20%22%26%2332%3B%22'},
28 {name:'5b77a0be23453dfe6eea59d43bb0708f89e1df82', input:'%26%23x20%3B', expected :'%23document-fragment%0A%7C%20%22%26%23x20%3B%22'},
29 {name:'87986551b0e6180cb279f2aa4cdddf77daa90c11', input:'%26%3B', expected:'%23d ocument-fragment%0A%7C%20%22%26%3B%22'}
30 ]);
31 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698