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

Side by Side Diff: LayoutTests/fast/js/modify-non-references-expected.txt

Issue 14146002: Remove all generic expected results for which a generic Chromium expected result exists (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 PASS function f() { g()++; } f.toString() is 'function f() { g()++; }'
2 PASS function f() { g()--; } f.toString() is 'function f() { g()--; }'
3 PASS function f() { ++g(); } f.toString() is 'function f() { ++g(); }'
4 PASS function f() { --g(); } f.toString() is 'function f() { --g(); }'
5 PASS function f() { g() = 1; } f.toString() is 'function f() { g() = 1; }'
6 PASS function f() { g() += 1; } f.toString() is 'function f() { g() += 1; }'
7 PASS g()++ threw exception ReferenceError: Postfix ++ operator applied to value that is not a reference..
8 PASS g()-- threw exception ReferenceError: Postfix -- operator applied to value that is not a reference..
9 PASS ++g() threw exception ReferenceError: Prefix ++ operator applied to value t hat is not a reference..
10 PASS --g() threw exception ReferenceError: Prefix -- operator applied to value t hat is not a reference..
11 PASS g() = 1 threw exception ReferenceError: Left side of assignment is not a re ference..
12 PASS g() += 1 threw exception ReferenceError: Left side of assignment is not a r eference..
13 PASS successfullyParsed is true
14
15 TEST COMPLETE
16
OLDNEW
« no previous file with comments | « LayoutTests/fast/js/kde/string-2-n-expected.txt ('k') | LayoutTests/fast/js/mozilla/strict/15.4.5.1-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698