| <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
| <html> |
| <head> |
| <script src="../../resources/js-test-pre.js"></script> |
| </head> |
| <body> |
| <script> |
| description( |
| 'This is a test case for String.prototype.fontsize(size).' |
| ); |
| |
| // This test is based on http://mathias.html5.org/tests/javascript/string/. |
| |
| // Check that the quotation mark is correctly escaped. |
| shouldBe("'_'.fontsize('\"')", '"<font size=\\""\\">_</font>"'); |
| |
| // Simple case. |
| shouldBe("'_'.fontsize('b')", '"<font size=\\"b\\">_</font>"'); |
| |
| // Does not escape special characters in `this` value. |
| shouldBe("'<'.fontsize('b')", '"<font size=\\"b\\"><</font>"'); |
| |
| // First argument gets ToString()ed. |
| shouldBe("'_'.fontsize(0x2A)", '"<font size=\\"42\\">_</font>"'); |
| |
| // Check that the quotation mark is correctly escaped. |
| shouldBe("'_'.fontsize('\"')", '"<font size=\\""\\">_</font>"'); |
| shouldBe("'_'.fontsize('\" color=\"b')", '"<font size=\\"" color="b\\">_</font>"'); |
| |
| // Generic use on Number object. |
| shouldBe("String.prototype.fontsize.call(0x2A, 0x2A)", '"<font size=\\"42\\">42</font>"'); |
| |
| // Generic use on non-coercible object `undefined`. |
| shouldThrowErrorName("String.prototype.fontsize.call(undefined)", 'TypeError'); |
| |
| // Generic use on non-coercible object `null`. |
| shouldThrowErrorName("String.prototype.fontsize.call(null)", 'TypeError'); |
| |
| // Check fontsize.length. |
| shouldBe("String.prototype.fontsize.length", "1"); |
| </script> |
| <script src="../../resources/js-test-post.js"></script> |
| </body> |
| </html> |