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

Side by Side Diff: sky/engine/web/tests/data/popup/select_event_remove_on_click.html

Issue 1210153009: Remove (almost all of) //sky/engine/web (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 5 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 <!DOCTYPE html>
2 <html>
3 <body>
4 <div id="message"></div>
5 <select id="s" autofocus>
6 <option>1</option>
7 <option>2</option>
8 <option>3</option>
9 </select>
10 <script>
11 function handler(e) {
12 document.getElementById('message').innerText += "click";
13 select = document.getElementById('s');
14 select.parentNode.removeChild(select);
15 }
16
17 document.getElementById('s').addEventListener('click', handler);
18 </script>
19 </body>
20 </html>
OLDNEW
« no previous file with comments | « sky/engine/web/tests/data/popup/select_event_remove_on_change.html ('k') | sky/engine/web/tests/data/popup/select_rtl.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698