Changeset 232726 in webkit
- Timestamp:
- Jun 11, 2018, 12:35:04 PM (7 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r232724 r232726 1 2018-06-11 Antti Koivisto <antti@apple.com> 2 3 Fix spelling. 4 5 * http/tests/cache/disk-cache/disk-cache-media-small.html: 6 1 7 2018-06-11 Brady Eidson <beidson@apple.com> 2 8 -
trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-media-small.html
r232717 r232726 24 24 } 25 25 26 function logResponses(media, expe xtedSource)26 function logResponses(media, expectedSource) 27 27 { 28 28 let pass = true; … … 30 30 const sources = internals.mediaResponseSources(media); 31 31 for (i = 0; i < ranges.length; ++i) { 32 if (sources[i] != expe xtedSource) {33 logdiv.innerHTML += `FAIL: Range ${ranges[i]} from ${sources[i]} expected ${expe xtedSource}<br>`;32 if (sources[i] != expectedSource) { 33 logdiv.innerHTML += `FAIL: Range ${ranges[i]} from ${sources[i]} expected ${expectedSource}<br>`; 34 34 pass = false; 35 35 } 36 36 } 37 37 if (pass) 38 logdiv.innerHTML += `PASS: All response ranges from: ${expe xtedSource}<br>`;38 logdiv.innerHTML += `PASS: All response ranges from: ${expectedSource}<br>`; 39 39 } 40 40
Note:
See TracChangeset
for help on using the changeset viewer.