Skip to content
Snippets Groups Projects
Commit c6b0864d authored by jugglinmike's avatar jugglinmike Committed by Leo Balter
Browse files

Extend tests for Annex B String HTML methods (#627)

- Add tests for abrupt completion handling from ToString operations
- Add tests for method property descriptors
- Remove redundant assertion
parent 230dee16
No related branches found
No related tags found
No related merge requests found
Showing
with 274 additions and 6 deletions
......@@ -24,4 +24,3 @@ assert.throws(TypeError, function() {
assert.throws(TypeError, function() {
String.prototype.anchor.call(null);
});
assert.sameValue(String.prototype.anchor.length, 1);
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-string.prototype.anchor
es6id: B.2.3.2
description: Abrupt completion when coercing "this" value to string
info: |
B.2.3.2.1 Runtime Semantics: CreateHTML
[...]
4. If attribute is not the empty String, then
a. Let V be ? ToString(value).
---*/
var attr = {
toString: function() {
throw new Test262Error();
}
};
assert.throws(Test262Error, function() {
''.anchor(attr);
});
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-string.prototype.anchor
es6id: B.2.3.2
description: Property descriptor for String.prototype.anchor
info: >
Every other data property described in clauses 18 through 26 and in Annex
B.2 has the attributes { [[Writable]]: true, [[Enumerable]]: false,
[[Configurable]]: true } unless otherwise specified.
includes: [propertyHelper.js]
---*/
verifyNotEnumerable(String.prototype, 'anchor');
verifyWritable(String.prototype, 'anchor');
verifyConfigurable(String.prototype, 'anchor');
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-string.prototype.anchor
es6id: B.2.3.2
description: Abrupt completion when coercing "this" value to string
info: |
B.2.3.2.1 Runtime Semantics: CreateHTML
1. Let str be ? RequireObjectCoercible(string).
2. Let S be ? ToString(str).
---*/
var thisVal = {
toString: function() {
throw new Test262Error();
}
};
assert.throws(Test262Error, function() {
String.prototype.anchor.call(thisVal);
});
......@@ -21,4 +21,3 @@ assert.throws(TypeError, function() {
assert.throws(TypeError, function() {
String.prototype.big.call(null);
});
assert.sameValue(String.prototype.big.length, 0);
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-string.prototype.big
es6id: B.2.3.3
description: Property descriptor for String.prototype.big
info: >
Every other data property described in clauses 18 through 26 and in Annex
B.2 has the attributes { [[Writable]]: true, [[Enumerable]]: false,
[[Configurable]]: true } unless otherwise specified.
includes: [propertyHelper.js]
---*/
verifyNotEnumerable(String.prototype, 'big');
verifyWritable(String.prototype, 'big');
verifyConfigurable(String.prototype, 'big');
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-string.prototype.big
es6id: B.2.3.3
description: Abrupt completion when coercing "this" value to string
info: |
B.2.3.2.1 Runtime Semantics: CreateHTML
1. Let str be ? RequireObjectCoercible(string).
2. Let S be ? ToString(str).
---*/
var thisVal = {
toString: function() {
throw new Test262Error();
}
};
assert.throws(Test262Error, function() {
String.prototype.big.call(thisVal);
});
......@@ -21,4 +21,3 @@ assert.throws(TypeError, function() {
assert.throws(TypeError, function() {
String.prototype.blink.call(null);
});
assert.sameValue(String.prototype.blink.length, 0);
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-string.prototype.blink
es6id: B.2.3.4
description: Property descriptor for String.prototype.blink
info: >
Every other data property described in clauses 18 through 26 and in Annex
B.2 has the attributes { [[Writable]]: true, [[Enumerable]]: false,
[[Configurable]]: true } unless otherwise specified.
includes: [propertyHelper.js]
---*/
verifyNotEnumerable(String.prototype, 'blink');
verifyWritable(String.prototype, 'blink');
verifyConfigurable(String.prototype, 'blink');
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-string.prototype.blink
es6id: B.2.3.4
description: Abrupt completion when coercing "this" value to string
info: |
B.2.3.2.1 Runtime Semantics: CreateHTML
1. Let str be ? RequireObjectCoercible(string).
2. Let S be ? ToString(str).
---*/
var thisVal = {
toString: function() {
throw new Test262Error();
}
};
assert.throws(Test262Error, function() {
String.prototype.blink.call(thisVal);
});
......@@ -21,4 +21,3 @@ assert.throws(TypeError, function() {
assert.throws(TypeError, function() {
String.prototype.bold.call(null);
});
assert.sameValue(String.prototype.bold.length, 0);
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-string.prototype.bold
es6id: B.2.3.5
description: Property descriptor for String.prototype.bold
info: >
Every other data property described in clauses 18 through 26 and in Annex
B.2 has the attributes { [[Writable]]: true, [[Enumerable]]: false,
[[Configurable]]: true } unless otherwise specified.
includes: [propertyHelper.js]
---*/
verifyNotEnumerable(String.prototype, 'bold');
verifyWritable(String.prototype, 'bold');
verifyConfigurable(String.prototype, 'bold');
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-string.prototype.bold
es6id: B.2.3.5
description: Abrupt completion when coercing "this" value to string
info: |
B.2.3.2.1 Runtime Semantics: CreateHTML
1. Let str be ? RequireObjectCoercible(string).
2. Let S be ? ToString(str).
---*/
var thisVal = {
toString: function() {
throw new Test262Error();
}
};
assert.throws(Test262Error, function() {
String.prototype.bold.call(thisVal);
});
......@@ -21,4 +21,3 @@ assert.throws(TypeError, function() {
assert.throws(TypeError, function() {
String.prototype.fixed.call(null);
});
assert.sameValue(String.prototype.fixed.length, 0);
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-string.prototype.fixed
es6id: B.2.3.6
description: Property descriptor for String.prototype.fixed
info: >
Every other data property described in clauses 18 through 26 and in Annex
B.2 has the attributes { [[Writable]]: true, [[Enumerable]]: false,
[[Configurable]]: true } unless otherwise specified.
includes: [propertyHelper.js]
---*/
verifyNotEnumerable(String.prototype, 'fixed');
verifyWritable(String.prototype, 'fixed');
verifyConfigurable(String.prototype, 'fixed');
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-string.prototype.fixed
es6id: B.2.3.6
description: Abrupt completion when coercing "this" value to string
info: |
B.2.3.2.1 Runtime Semantics: CreateHTML
1. Let str be ? RequireObjectCoercible(string).
2. Let S be ? ToString(str).
---*/
var thisVal = {
toString: function() {
throw new Test262Error();
}
};
assert.throws(Test262Error, function() {
String.prototype.fixed.call(thisVal);
});
......@@ -26,4 +26,3 @@ assert.throws(TypeError, function() {
assert.throws(TypeError, function() {
String.prototype.fontcolor.call(null);
});
assert.sameValue(String.prototype.fontcolor.length, 1);
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-string.prototype.fontcolor
es6id: B.2.3.7
description: Abrupt completion when coercing "this" value to string
info: |
B.2.3.2.1 Runtime Semantics: CreateHTML
[...]
4. If attribute is not the empty String, then
a. Let V be ? ToString(value).
---*/
var attr = {
toString: function() {
throw new Test262Error();
}
};
assert.throws(Test262Error, function() {
''.fontcolor(attr);
});
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-string.prototype.fontcolor
es6id: B.2.3.7
description: Property descriptor for String.prototype.fontcolor
info: >
Every other data property described in clauses 18 through 26 and in Annex
B.2 has the attributes { [[Writable]]: true, [[Enumerable]]: false,
[[Configurable]]: true } unless otherwise specified.
includes: [propertyHelper.js]
---*/
verifyNotEnumerable(String.prototype, 'fontcolor');
verifyWritable(String.prototype, 'fontcolor');
verifyConfigurable(String.prototype, 'fontcolor');
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-string.prototype.fontcolor
es6id: B.2.3.7
description: Abrupt completion when coercing "this" value to string
info: |
B.2.3.2.1 Runtime Semantics: CreateHTML
1. Let str be ? RequireObjectCoercible(string).
2. Let S be ? ToString(str).
---*/
var thisVal = {
toString: function() {
throw new Test262Error();
}
};
assert.throws(Test262Error, function() {
String.prototype.fontcolor.call(thisVal);
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment