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

Side by Side Diff: LayoutTests/fast/forms/label/detached-document.html

Issue 288933002: Fix crash after detaching document. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebasing Issue Created 6 years, 7 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
« no previous file with comments | « no previous file | LayoutTests/fast/forms/label/detached-document-expected.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <label id="label">
3 <script>
4 var label = document.getElementById("label");
5 var doc = document.implementation.createDocument("", null);
6 doc.adoptNode(label);
7 var mouseEvent = document.createEvent('MouseEvent');
8 mouseEvent.initMouseEvent("click", 56644);
9 label.dispatchEvent(mouseEvent)
10 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/forms/label/detached-document-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698