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

Side by Side Diff: LayoutTests/fast/dom/Text/text-constructor.html

Issue 382833003: Revert of IDL: Treat undefined as missing for optional arguments with defaults (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 5 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 <body> 2 <body>
3 <script src="../../../resources/js-test.js"></script> 3 <script src="../../../resources/js-test.js"></script>
4 <script> 4 <script>
5 5
6 description('This tests that Text is constructable.'); 6 description('This tests that Text is constructable.');
7 7
8 shouldBe('new Text("one").data', '"one"'); 8 shouldBe('new Text("one").data', '"one"');
9 shouldBe('new Text().data', '""'); 9 shouldBe('new Text().data', '""');
10 shouldBe('new Text(undefined).data', '""');
11 shouldBe('new Text(null).data', '"null"');
12 shouldBe('new Text("two").ownerDocument', 'document'); 10 shouldBe('new Text("two").ownerDocument', 'document');
13 11
14 shouldBe('typeof new Text', '"object"'); 12 shouldBe('typeof new Text', '"object"');
15 shouldBe('Object.prototype.toString.call(new Text)', '"[object Text]"'); 13 shouldBe('Object.prototype.toString.call(new Text)', '"[object Text]"');
16 shouldBeTrue('new Text instanceof Text'); 14 shouldBeTrue('new Text instanceof Text');
17 shouldBe('Object.getPrototypeOf(new Text)', 'Text.prototype'); 15 shouldBe('Object.getPrototypeOf(new Text)', 'Text.prototype');
18 16
19 var frame = document.createElement('iframe'); 17 var frame = document.createElement('iframe');
20 document.body.appendChild(frame); 18 document.body.appendChild(frame);
21 var innerWindow = frame.contentWindow; 19 var innerWindow = frame.contentWindow;
22 var innerDocument = frame.contentDocument; 20 var innerDocument = frame.contentDocument;
23 21
24 shouldBe('new innerWindow.Text("three").ownerDocument', 'innerDocument') 22 shouldBe('new innerWindow.Text("three").ownerDocument', 'innerDocument')
25 shouldBeTrue('new innerWindow.Text instanceof innerWindow.Text'); 23 shouldBeTrue('new innerWindow.Text instanceof innerWindow.Text');
26 shouldBe('Object.getPrototypeOf(new innerWindow.Text)', 'innerWindow.Text.protot ype'); 24 shouldBe('Object.getPrototypeOf(new innerWindow.Text)', 'innerWindow.Text.protot ype');
27 25
28 </script> 26 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698