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

Side by Side Diff: third_party/WebKit/LayoutTests/html/dialog/removed-element-is-removed-from-top-layer.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 dialog { 5 dialog {
6 height: 100px; 6 height: 100px;
7 width: 100px; 7 width: 100px;
8 } 8 }
9 9
10 ::backdrop { 10 ::backdrop {
(...skipping 22 matching lines...) Expand all
33 var bottomDialog = document.getElementById('bottomDialog'); 33 var bottomDialog = document.getElementById('bottomDialog');
34 bottomDialog.showModal(); 34 bottomDialog.showModal();
35 bottomDialog.offsetTop; // force a layout 35 bottomDialog.offsetTop; // force a layout
36 var parent = bottomDialog.parentNode; 36 var parent = bottomDialog.parentNode;
37 parent.removeChild(bottomDialog); 37 parent.removeChild(bottomDialog);
38 parent.appendChild(bottomDialog); 38 parent.appendChild(bottomDialog);
39 </script> 39 </script>
40 </body> 40 </body>
41 </html> 41 </html>
42 42
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698