Changeset 181130 in webkit
- Timestamp:
- Mar 5, 2015, 7:41:16 PM (10 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r181129 r181130 1 2015-03-05 Joseph Pecoraro <pecoraro@apple.com> 2 3 Unreviewed Test Fix: Remove unnecessary reference to "window" causing test failure. 4 5 * js/object-literal-shorthand-construction-expected.txt: 6 * js/script-tests/object-literal-shorthand-construction.js: 7 1 8 2015-03-05 Stephanie Lewis <slewis@apple.com> 2 9 -
trunk/LayoutTests/js/object-literal-shorthand-construction-expected.txt
r181121 r181130 47 47 PASS equivalent([{nest:[{a}]}][0].nest[0], [{nest: [{a:a}]}][0].nest[0]) is true 48 48 PASS equivalent({a,b,t,x,f,nul,un,fun,foo,bar}, {a:a, b:b, t:t, x:x, f:f, nul:null, un:un, fun:fun, foo:foo, bar:bar}) is true 49 PASS equivalent({eval}, {eval: window.eval}) is true49 PASS equivalent({eval}, {eval: eval}) is true 50 50 PASS ({noSuchIdentifier}) threw exception ReferenceError: Can't find variable: noSuchIdentifier. 51 51 PASS ({a,noSuchIdentifier}) threw exception ReferenceError: Can't find variable: noSuchIdentifier. -
trunk/LayoutTests/js/script-tests/object-literal-shorthand-construction.js
r181121 r181130 88 88 testShorthandConstructionEquivalent("{a,b,t,x,f,nul,un,fun,foo,bar}", "{a:a, b:b, t:t, x:x, f:f, nul:null, un:un, fun:fun, foo:foo, bar:bar}"); 89 89 90 testShorthandConstructionEquivalent("{eval}", "{eval: window.eval}");90 testShorthandConstructionEquivalent("{eval}", "{eval: eval}"); 91 91 92 92 shouldThrow("({noSuchIdentifier})");
Note:
See TracChangeset
for help on using the changeset viewer.