initial commit
[JIRC.git] / node_modules / jsdom / node_modules / htmlparser / pulls / node-htmlparser / tests / 09-unquoted_attrib.js
1 (function () {
2
3 function RunningInNode () {
4 return(
5 (typeof require) == "function"
6 &&
7 (typeof exports) == "object"
8 &&
9 (typeof module) == "object"
10 &&
11 (typeof __filename) == "string"
12 &&
13 (typeof __dirname) == "string"
14 );
15 }
16
17 if (!RunningInNode()) {
18 if (!this.Tautologistics)
19 this.Tautologistics = {};
20 if (!this.Tautologistics.NodeHtmlParser)
21 this.Tautologistics.NodeHtmlParser = {};
22 if (!this.Tautologistics.NodeHtmlParser.Tests)
23 this.Tautologistics.NodeHtmlParser.Tests = [];
24 exports = {};
25 this.Tautologistics.NodeHtmlParser.Tests.push(exports);
26 }
27
28 exports.name = "Unquoted attributes";
29 exports.html = "<font size= 14>the text</font>";
30 exports.expected =
31 [ { raw: 'font size= 14'
32 , data: 'font size= 14'
33 , type: 'tag'
34 , name: 'font'
35 , attribs: { size: '14' }
36 , children:
37 [ { raw: 'the text'
38 , data: 'the text'
39 , type: 'text'
40 }
41 ]
42 }
43 ];
44
45 })();