Clean up formatting (indents)

This commit is contained in:
Lyza Danger Gardner 2017-06-29 10:59:34 -04:00 committed by Rick Waldron
parent 8d8bdc1f92
commit e6712e0d16
3 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@ description: >
(false) (false)
---*/ ---*/
var desc = Object.getOwnPropertyDescriptor(this, 'undefined'); var desc = Object.getOwnPropertyDescriptor(this, 'undefined');
assert.sameValue(desc.writable, false, 'desc.writable'); assert.sameValue(desc.writable, false, 'desc.writable');
assert.sameValue(desc.enumerable, false, 'desc.enumerable'); assert.sameValue(desc.enumerable, false, 'desc.enumerable');

View File

@ -11,6 +11,6 @@ description: >
flags: [noStrict] flags: [noStrict]
---*/ ---*/
var newProperty = undefined = 42; var newProperty = undefined = 42;
assert.sameValue(newProperty, 42, 'newProperty'); assert.sameValue(newProperty, 42, 'newProperty');

View File

@ -12,6 +12,6 @@ description: Use for-in statement
// CHECK#1 // CHECK#1
for (var prop in this) { for (var prop in this) {
if (prop === "undefined") { if (prop === "undefined") {
$ERROR('#1: The undefined is DontEnum'); $ERROR('#1: The undefined is DontEnum');
} }
} }