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

Side by Side Diff: third_party/WebKit/LayoutTests/html/dialog/inert-node-is-not-highlighted-expected.html

Issue 2671603003: Move DIALOG element tests to html/dialog/. (Closed)
Patch Set: Created 3 years, 10 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 body p, span { 5 body p, span {
6 -webkit-user-select: none; 6 -webkit-user-select: none;
7 } 7 }
8 8
9 ::backdrop { 9 ::backdrop {
10 display: none; 10 display: none;
(...skipping 15 matching lines...) Expand all
26 </dialog> 26 </dialog>
27 27
28 <script> 28 <script>
29 dialog = document.querySelector('dialog'); 29 dialog = document.querySelector('dialog');
30 dialog.showModal(); 30 dialog.showModal();
31 selectable = document.querySelector('#selectable'); 31 selectable = document.querySelector('#selectable');
32 window.getSelection().selectAllChildren(selectable); 32 window.getSelection().selectAllChildren(selectable);
33 </script> 33 </script>
34 </body> 34 </body>
35 </html> 35 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698