| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- (function () {
- function RunningInNode () {
- return(
- (typeof require) == "function"
- &&
- (typeof exports) == "object"
- &&
- (typeof module) == "object"
- &&
- (typeof __filename) == "string"
- &&
- (typeof __dirname) == "string"
- );
- }
- if (!RunningInNode()) {
- if (!this.Tautologistics)
- this.Tautologistics = {};
- if (!this.Tautologistics.NodeHtmlParser)
- this.Tautologistics.NodeHtmlParser = {};
- if (!this.Tautologistics.NodeHtmlParser.Tests)
- this.Tautologistics.NodeHtmlParser.Tests = [];
- exports = {};
- this.Tautologistics.NodeHtmlParser.Tests.push(exports);
- }
- exports.name = "Option 'verbose' set to 'false'";
- exports.html = "<\n font \n size='14' \n>the text<\n / \nfont \n>";
- exports.options = { verbose: false };
- exports.expected =
- [ { type: 'tag'
- , name: 'font'
- , attribs: { size: '14' }
- , children:
- [ { data: 'the text'
- , type: 'text'
- }
- ]
- }
- ];
- })();
|