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

Side by Side Diff: LayoutTests/fast/dom/shadow/resize-in-shadow-dom.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <body> 3 <body>
4 <script src="../resources/event-sender-util.js"></script> 4 <script src="../resources/event-sender-util.js"></script>
5 <script src="../../js/resources/js-test-pre.js"></script> 5 <script src="../../../resources/js-test.js"></script>
6 6
7 <div id="host"></div> 7 <div id="host"></div>
8 <pre id="console"></pre> 8 <pre id="console"></pre>
9 9
10 <script> 10 <script>
11 function createBox(name) { 11 function createBox(name) {
12 var div = document.createElement('div'); 12 var div = document.createElement('div');
13 div.style.width = '100px'; 13 div.style.width = '100px';
14 div.style.height = '100px'; 14 div.style.height = '100px';
15 div.style.resize = 'both'; 15 div.style.resize = 'both';
(...skipping 16 matching lines...) Expand all
32 eventSender.mouseUp(); 32 eventSender.mouseUp();
33 33
34 shouldBe('box.offsetWidth', '114'); 34 shouldBe('box.offsetWidth', '114');
35 shouldBe('box.offsetHeight', '114'); 35 shouldBe('box.offsetHeight', '114');
36 36
37 var successfullyParsed = true; 37 var successfullyParsed = true;
38 </script> 38 </script>
39 39
40 </body> 40 </body>
41 </html> 41 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698