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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/Window/custom-constructors-expected.txt

Issue 2846523002: Update the stringifier behavior for DOMMatrixReadOnly (Closed)
Patch Set: Update the stringifier behavior for DOMMatrixReadOnly Created 3 years, 6 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 Test constructors for classes in Window 1 Test constructors for classes in Window
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 PASS Audio.prototype.toString.call(new Audio) is '[object HTMLAudioElement]' 5 PASS Audio.prototype.toString.call(new Audio) is '[object HTMLAudioElement]'
6 PASS Image.prototype.toString.call(new Image) is '[object HTMLImageElement]' 6 PASS Image.prototype.toString.call(new Image) is '[object HTMLImageElement]'
7 PASS Option.prototype.toString.call(new Option) is '[object HTMLOptionElement]' 7 PASS Option.prototype.toString.call(new Option) is '[object HTMLOptionElement]'
8 PASS WebKitCSSMatrix.prototype.toString.call(new WebKitCSSMatrix) is 'matrix(1.0 00000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000)' 8 PASS WebKitCSSMatrix.prototype.toString.call(new WebKitCSSMatrix) is 'matrix(1, 0, 0, 1, 0, 0)'
9 PASS WebKitCSSMatrix.prototype.toString.call(new WebKitCSSMatrix()) is 'matrix(1 .000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000)' 9 PASS WebKitCSSMatrix.prototype.toString.call(new WebKitCSSMatrix()) is 'matrix(1 , 0, 0, 1, 0, 0)'
10 PASS new WebKitCSSMatrix(null) threw exception SyntaxError: Failed to construct 'WebKitCSSMatrix': Failed to parse 'null'.. 10 PASS new WebKitCSSMatrix(null) threw exception SyntaxError: Failed to construct 'WebKitCSSMatrix': Failed to parse 'null'..
11 FAIL new WebKitCSSMatrix(undefined) should throw an exception. Was matrix(1.0000 00, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000). 11 FAIL new WebKitCSSMatrix(undefined) should throw an exception. Was matrix(1, 0, 0, 1, 0, 0).
12 PASS XMLHttpRequest.prototype.toString.call(new XMLHttpRequest) is '[object XMLH ttpRequest]' 12 PASS XMLHttpRequest.prototype.toString.call(new XMLHttpRequest) is '[object XMLH ttpRequest]'
13 PASS XSLTProcessor.prototype.toString.call(new XSLTProcessor) is '[object XSLTPr ocessor]' 13 PASS XSLTProcessor.prototype.toString.call(new XSLTProcessor) is '[object XSLTPr ocessor]'
14 PASS successfullyParsed is true 14 PASS successfullyParsed is true
15 15
16 TEST COMPLETE 16 TEST COMPLETE
17 17
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698