OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <script src="../resources/testharness.js"></script> | 2 <script src="../resources/testharness.js"></script> |
3 <script src="../resources/testharnessreport.js"></script> | 3 <script src="../resources/testharnessreport.js"></script> |
4 <script src="../resources/mojo-helpers.js"></script> | 4 <script src="../resources/mojo-helpers.js"></script> |
5 <script src="resources/mock-imagecapture.js"></script> | 5 <script src="resources/mock-imagecapture.js"></script> |
6 <body> | 6 <body> |
7 <canvas id='canvas' width=10 height=10/> | 7 <canvas id='canvas' width=10 height=10/> |
8 </body> | 8 </body> |
9 <script> | 9 <script> |
10 | 10 |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 | 57 |
58 t.done(); | 58 t.done(); |
59 }) | 59 }) |
60 .catch(error => { | 60 .catch(error => { |
61 assert_unreached("Error during getPhotoCapabilities(): " + error.message); | 61 assert_unreached("Error during getPhotoCapabilities(): " + error.message); |
62 }); | 62 }); |
63 | 63 |
64 }, 'exercises ImageCapture.getPhotoCapabilities()'); | 64 }, 'exercises ImageCapture.getPhotoCapabilities()'); |
65 | 65 |
66 </script> | 66 </script> |
OLD | NEW |