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

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/test.html

Issue 1282593002: Add ChromeVox panel and implement caption display functionality. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revert changes to accessibility_manager in this change Created 5 years, 4 months 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 <script>
2 goog = {};
3 goog.provide = function() {};
4 </script>
5 <script src="earcon_engine.js"></script>
6 <button id='alert'>Alert</button>
7 <script>
8 var ee = new EarconEngine();
9 ee.onAlert();
10 document.getElementById('alert').addEventListener('click', function() {
11 ee.onAlert();
12 });
13 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698