Chromium Code Reviews| Index: chrome/browser/resources/chromeos/chromevox/cvox2/background/test.html |
| diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/test.html b/chrome/browser/resources/chromeos/chromevox/cvox2/background/test.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..83d889caf6e52abad8ea93cac29abc1daeb35c8c |
| --- /dev/null |
| +++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/test.html |
| @@ -0,0 +1,13 @@ |
| +<script> |
| +goog = {}; |
| +goog.provide = function() {}; |
| +</script> |
| +<script src="earcon_engine.js"></script> |
| +<button id='alert'>Alert</button> |
| +<script> |
| +var ee = new EarconEngine(); |
| +ee.onAlert(); |
| +document.getElementById('alert').addEventListener('click', function() { |
| + ee.onAlert(); |
| +}); |
| +</script> |
|
David Tseng
2015/08/07 21:43:03
Looks unrelated?
dmazzoni
2015/11/05 23:59:41
Done.
|