Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 function cellular_preload_test() { | |
| 2 async_test(function(t) { | |
| 3 internals.setNetworkConnectionInfoOverride(true, 'cellular3g', 2.0); | |
| 4 | |
| 5 var video = document.querySelector('video'); | |
| 6 assert_equals(video.preload, 'none') | |
| 7 video.src = 'resources/test-positive-start-time.webm'; | |
| 8 | |
| 9 video.onsuspend = t.step_func_done(); | |
| 10 video.onprogress = t.unreached_func(); | |
| 11 t.add_cleanup(function() { | |
| 12 internals.clearNetworkConnectionInfoOverride(); | |
| 13 }); | |
| 14 }); | |
| 15 } | |
| OLD | NEW |