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

Side by Side Diff: LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-crash-after-adoptnode.html

Issue 10980011: Merge 129448 - Document::adoptNode for multiple fields time input UI should not crash (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1271/
Patch Set: Created 8 years, 2 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 <script src="../../js/resources/js-test-pre.js"></script> 4 <script src="../../js/resources/js-test-pre.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <div id="container"> 7 <div id="container">
8 <input autofocus id="test" type="time" value="12:34"> 8 <input autofocus id="test" type="time" value="12:34">
9 </div> 9 </div>
10 <script> 10 <script>
(...skipping 11 matching lines...) Expand all
22 logs.push('start-focus'); 22 logs.push('start-focus');
23 testInput.focus(); 23 testInput.focus();
24 logs.push('end-focus'); 24 logs.push('end-focus');
25 shouldBeEqualToString('logs.toString()', 'start-adoptNode,blur,end-adoptNode,sta rt-focus,end-focus'); 25 shouldBeEqualToString('logs.toString()', 'start-adoptNode,blur,end-adoptNode,sta rt-focus,end-focus');
26 debug(''); 26 debug('');
27 document.body.removeChild(container); 27 document.body.removeChild(container);
28 </script> 28 </script>
29 <script src="../../js/resources/js-test-post.js"></script> 29 <script src="../../js/resources/js-test-post.js"></script>
30 </body> 30 </body>
31 </html> 31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698