LayoutTests/dom/html/level2/html/HTMLBaseFontElement01-expected.txt

1 Test: http://www.w3.org/2001/DOM-Test-Suite/level2/html/HTMLBaseFontElement01
2 Status: Success

LayoutTests/dom/html/level2/html/HTMLBaseFontElement01.html

1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2 <HTML>
3 <HEAD>
4 <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=utf-8">
5 <TITLE>NIST DOM HTML Test - BaseFont</TITLE>
6 <script type='text/javascript' src='selfhtml.js'></script><script charset='UTF-8' type='text/javascript' src='HTMLBaseFontElement01.js'></script><script type='text/javascript'>function loadComplete() { startTest(); }</script></HEAD>
7 <BODY onload="loadComplete()">
8 <P>
9 <BASEFONT COLOR="#000000" FACE="arial,helvitica" SIZE="4">
10 </P>
11 </BODY>
12 </HTML>

LayoutTests/dom/html/level2/html/HTMLBaseFontElement01.js

1 
2 /*
3 Copyright © 2001-2004 World Wide Web Consortium,
4 (Massachusetts Institute of Technology, European Research Consortium
5 for Informatics and Mathematics, Keio University). All
6 Rights Reserved. This work is distributed under the W3C® Software License [1] in the
7 hope that it will be useful, but WITHOUT ANY WARRANTY; without even
8 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
9 
10 [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
11 */
12 
13 
14 
15  /**
16  * Gets URI that identifies the test.
17  * @return uri identifier of test
18  */
19 function getTargetURI() {
20  return "http://www.w3.org/2001/DOM-Test-Suite/level2/html/HTMLBaseFontElement01";
21  }
22 
23 var docsLoaded = -1000000;
24 var builder = null;
25 
26 //
27 // This function is called by the testing framework before
28 // running the test suite.
29 //
30 // If there are no configuration exceptions, asynchronous
31 // document loading is started. Otherwise, the status
32 // is set to complete and the exception is immediately
33 // raised when entering the body of the test.
34 //
35 function setUpPage() {
36  setUpPageStatus = 'running';
37  try {
38  //
39  // creates test document builder, may throw exception
40  //
41  builder = createConfiguredBuilder();
42 
43  docsLoaded = 0;
44 
45  var docRef = null;
46  if (typeof(this.doc) != 'undefined') {
47  docRef = this.doc;
48  }
49  docsLoaded += preload(docRef, "doc", "basefont");
50 
51  if (docsLoaded == 1) {
52  setUpPageStatus = 'complete';
53  }
54  } catch(ex) {
55  catchInitializationError(builder, ex);
56  setUpPageStatus = 'complete';
57  }
58 }
59 
60 
61 
62 //
63 // This method is called on the completion of
64 // each asychronous load started in setUpTests.
65 //
66 // When every synchronous loaded document has completed,
67 // the page status is changed which allows the
68 // body of the test to be executed.
69 function loadComplete() {
70  if (++docsLoaded == 1) {
71  setUpPageStatus = 'complete';
72  }
73 }
74 
75 
76 /**
77 *
78  The color attribute specifies the base font's color.
79 
80  Retrieve the color attribute and examine its value.
81 
82 * @author NIST
83 * @author Mary Brady
84 * @see http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-html#ID-87502302
85 */
86 function HTMLBaseFontElement01() {
87  var success;
88  if(checkInitialization(builder, "HTMLBaseFontElement01") != null) return;
89  var nodeList;
90  var testNode;
91  var vcolor;
92  var doc;
93 
94  var docRef = null;
95  if (typeof(this.doc) != 'undefined') {
96  docRef = this.doc;
97  }
98  doc = load(docRef, "doc", "basefont");
99  nodeList = doc.getElementsByTagName("basefont");
100  assertSize("Asize",1,nodeList);
101 testNode = nodeList.item(0);
102  vcolor = testNode.color;
103 
104  assertEquals("colorLink","#000000",vcolor);
105 
106 }
107 
108 
109 
110 
111 function runTest() {
112  HTMLBaseFontElement01();
113 }

LayoutTests/dom/html/level2/html/HTMLBaseFontElement02-expected.txt

1 Test: http://www.w3.org/2001/DOM-Test-Suite/level2/html/HTMLBaseFontElement02
2 Status: Success

LayoutTests/dom/html/level2/html/HTMLBaseFontElement02.html

1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2 <HTML>
3 <HEAD>
4 <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=utf-8">
5 <TITLE>NIST DOM HTML Test - BaseFont</TITLE>
6 <script type='text/javascript' src='selfhtml.js'></script><script charset='UTF-8' type='text/javascript' src='HTMLBaseFontElement02.js'></script><script type='text/javascript'>function loadComplete() { startTest(); }</script></HEAD>
7 <BODY onload="loadComplete()">
8 <P>
9 <BASEFONT COLOR="#000000" FACE="arial,helvitica" SIZE="4">
10 </P>
11 </BODY>
12 </HTML>

LayoutTests/dom/html/level2/html/HTMLBaseFontElement02.js

1 
2 /*
3 Copyright © 2001-2004 World Wide Web Consortium,
4 (Massachusetts Institute of Technology, European Research Consortium
5 for Informatics and Mathematics, Keio University). All
6 Rights Reserved. This work is distributed under the W3C® Software License [1] in the
7 hope that it will be useful, but WITHOUT ANY WARRANTY; without even
8 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
9 
10 [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
11 */
12 
13 
14 
15  /**
16  * Gets URI that identifies the test.
17  * @return uri identifier of test
18  */
19 function getTargetURI() {
20  return "http://www.w3.org/2001/DOM-Test-Suite/level2/html/HTMLBaseFontElement02";
21  }
22 
23 var docsLoaded = -1000000;
24 var builder = null;
25 
26 //
27 // This function is called by the testing framework before
28 // running the test suite.
29 //
30 // If there are no configuration exceptions, asynchronous
31 // document loading is started. Otherwise, the status
32 // is set to complete and the exception is immediately
33 // raised when entering the body of the test.
34 //
35 function setUpPage() {
36  setUpPageStatus = 'running';
37  try {
38  //
39  // creates test document builder, may throw exception
40  //
41  builder = createConfiguredBuilder();
42 
43  docsLoaded = 0;
44 
45  var docRef = null;
46  if (typeof(this.doc) != 'undefined') {
47  docRef = this.doc;
48  }
49  docsLoaded += preload(docRef, "doc", "basefont");
50 
51  if (docsLoaded == 1) {
52  setUpPageStatus = 'complete';
53  }
54  } catch(ex) {
55  catchInitializationError(builder, ex);
56  setUpPageStatus = 'complete';
57  }
58 }
59 
60 
61 
62 //
63 // This method is called on the completion of
64 // each asychronous load started in setUpTests.
65 //
66 // When every synchronous loaded document has completed,
67 // the page status is changed which allows the
68 // body of the test to be executed.
69 function loadComplete() {
70  if (++docsLoaded == 1) {
71  setUpPageStatus = 'complete';
72  }
73 }
74 
75 
76 /**
77 *
78  The face attribute specifies the base font's face identifier.
79 
80  Retrieve the face attribute and examine its value.
81 
82 * @author NIST
83 * @author Mary Brady
84 * @see http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-html#ID-88128969
85 */
86 function HTMLBaseFontElement02() {
87  var success;
88  if(checkInitialization(builder, "HTMLBaseFontElement02") != null) return;
89  var nodeList;
90  var testNode;
91  var vface;
92  var doc;
93 
94  var docRef = null;
95  if (typeof(this.doc) != 'undefined') {
96  docRef = this.doc;
97  }
98  doc = load(docRef, "doc", "basefont");
99  nodeList = doc.getElementsByTagName("basefont");
100  assertSize("Asize",1,nodeList);
101 testNode = nodeList.item(0);
102  vface = testNode.face;
103 
104  assertEquals("faceLink","arial,helvitica",vface);
105 
106 }
107 
108 
109 
110 
111 function runTest() {
112  HTMLBaseFontElement02();
113 }

LayoutTests/dom/html/level2/html/HTMLBaseFontElement03-expected.txt

1 Test: http://www.w3.org/2001/DOM-Test-Suite/level2/html/HTMLBaseFontElement03
2 Status: Success

LayoutTests/dom/html/level2/html/HTMLBaseFontElement03.html

1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2 <HTML>
3 <HEAD>
4 <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=utf-8">
5 <TITLE>NIST DOM HTML Test - BaseFont</TITLE>
6 <script type='text/javascript' src='selfhtml.js'></script><script charset='UTF-8' type='text/javascript' src='HTMLBaseFontElement03.js'></script><script type='text/javascript'>function loadComplete() { startTest(); }</script></HEAD>
7 <BODY onload="loadComplete()">
8 <P>
9 <BASEFONT COLOR="#000000" FACE="arial,helvitica" SIZE="4">
10 </P>
11 </BODY>
12 </HTML>

LayoutTests/dom/html/level2/html/HTMLBaseFontElement03.js

1 
2 /*
3 Copyright © 2001-2004 World Wide Web Consortium,
4 (Massachusetts Institute of Technology, European Research Consortium
5 for Informatics and Mathematics, Keio University). All
6 Rights Reserved. This work is distributed under the W3C® Software License [1] in the
7 hope that it will be useful, but WITHOUT ANY WARRANTY; without even
8 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
9 
10 [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
11 */
12 
13 
14 
15  /**
16  * Gets URI that identifies the test.
17  * @return uri identifier of test
18  */
19 function getTargetURI() {
20  return "http://www.w3.org/2001/DOM-Test-Suite/level2/html/HTMLBaseFontElement03";
21  }
22 
23 var docsLoaded = -1000000;
24 var builder = null;
25 
26 //
27 // This function is called by the testing framework before
28 // running the test suite.
29 //
30 // If there are no configuration exceptions, asynchronous
31 // document loading is started. Otherwise, the status
32 // is set to complete and the exception is immediately
33 // raised when entering the body of the test.
34 //
35 function setUpPage() {
36  setUpPageStatus = 'running';
37  try {
38  //
39  // creates test document builder, may throw exception
40  //
41  builder = createConfiguredBuilder();
42 
43  docsLoaded = 0;
44 
45  var docRef = null;
46  if (typeof(this.doc) != 'undefined') {
47  docRef = this.doc;
48  }
49  docsLoaded += preload(docRef, "doc", "basefont");
50 
51  if (docsLoaded == 1) {
52  setUpPageStatus = 'complete';
53  }
54  } catch(ex) {
55  catchInitializationError(builder, ex);
56  setUpPageStatus = 'complete';
57  }
58 }
59 
60 
61 
62 //
63 // This method is called on the completion of
64 // each asychronous load started in setUpTests.
65 //
66 // When every synchronous loaded document has completed,
67 // the page status is changed which allows the
68 // body of the test to be executed.
69 function loadComplete() {
70  if (++docsLoaded == 1) {
71  setUpPageStatus = 'complete';
72  }
73 }
74 
75 
76 /**
77 *
78  The size attribute specifies the base font's size.
79 
80  Retrieve the size attribute and examine it's value.
81 
82 * @author NIST
83 * @author Mary Brady
84 * @see http://www.w3.org/TR/DOM-Level-2-HTML/html#ID-38930424
85 */
86 function HTMLBaseFontElement03() {
87  var success;
88  if(checkInitialization(builder, "HTMLBaseFontElement03") != null) return;
89  var nodeList;
90  var testNode;
91  var vsize;
92  var doc;
93 
94  var docRef = null;
95  if (typeof(this.doc) != 'undefined') {
96  docRef = this.doc;
97  }
98  doc = load(docRef, "doc", "basefont");
99  nodeList = doc.getElementsByTagName("basefont");
100  assertSize("Asize",1,nodeList);
101 testNode = nodeList.item(0);
102  vsize = testNode.size;
103 
104  assertEquals("sizeLink",4,vsize);
105 
106 }
107 
108 
109 
110 
111 function runTest() {
112  HTMLBaseFontElement03();
113 }

LayoutTests/dom/html/level2/html/basefont01.html

1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2 <HTML>
3 <HEAD>
4 <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=utf-8">
5 <TITLE>NIST DOM HTML Test - BaseFont</TITLE>
6 <script type='text/javascript' src='selfhtml.js'></script><script charset='UTF-8' type='text/javascript' src='basefont01.js'></script><script type='text/javascript'>function loadComplete() { startTest(); }</script></HEAD>
7 <BODY onload="loadComplete()">
8 <P>
9 <BASEFONT COLOR="#000000" FACE="arial,helvitica" SIZE="4">
10 </P>
11 </BODY>
12 </HTML>

LayoutTests/dom/xhtml/level2/html/HTMLBaseFontElement01-expected.txt

1 Test http://www.w3.org/2001/DOM-Test-Suite/level2/html/HTMLBaseFontElement01
2 Status Success

LayoutTests/dom/xhtml/level2/html/HTMLBaseFontElement01.js

1 
2 /*
3 Copyright © 2001-2004 World Wide Web Consortium,
4 (Massachusetts Institute of Technology, European Research Consortium
5 for Informatics and Mathematics, Keio University). All
6 Rights Reserved. This work is distributed under the W3C® Software License [1] in the
7 hope that it will be useful, but WITHOUT ANY WARRANTY; without even
8 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
9 
10 [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
11 */
12 
13 
14 
15  /**
16  * Gets URI that identifies the test.
17  * @return uri identifier of test
18  */
19 function getTargetURI() {
20  return "http://www.w3.org/2001/DOM-Test-Suite/level2/html/HTMLBaseFontElement01";
21  }
22 
23 var docsLoaded = -1000000;
24 var builder = null;
25 
26 //
27 // This function is called by the testing framework before
28 // running the test suite.
29 //
30 // If there are no configuration exceptions, asynchronous
31 // document loading is started. Otherwise, the status
32 // is set to complete and the exception is immediately
33 // raised when entering the body of the test.
34 //
35 function setUpPage() {
36  setUpPageStatus = 'running';
37  try {
38  //
39  // creates test document builder, may throw exception
40  //
41  builder = createConfiguredBuilder();
42 
43  docsLoaded = 0;
44 
45  var docRef = null;
46  if (typeof(this.doc) != 'undefined') {
47  docRef = this.doc;
48  }
49  docsLoaded += preload(docRef, "doc", "basefont");
50 
51  if (docsLoaded == 1) {
52  setUpPageStatus = 'complete';
53  }
54  } catch(ex) {
55  catchInitializationError(builder, ex);
56  setUpPageStatus = 'complete';
57  }
58 }
59 
60 
61 
62 //
63 // This method is called on the completion of
64 // each asychronous load started in setUpTests.
65 //
66 // When every synchronous loaded document has completed,
67 // the page status is changed which allows the
68 // body of the test to be executed.
69 function loadComplete() {
70  if (++docsLoaded == 1) {
71  setUpPageStatus = 'complete';
72  }
73 }
74 
75 
76 /**
77 *
78  The color attribute specifies the base font's color.
79 
80  Retrieve the color attribute and examine its value.
81 
82 * @author NIST
83 * @author Mary Brady
84 * @see http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-html#ID-87502302
85 */
86 function HTMLBaseFontElement01() {
87  var success;
88  if(checkInitialization(builder, "HTMLBaseFontElement01") != null) return;
89  var nodeList;
90  var testNode;
91  var vcolor;
92  var doc;
93 
94  var docRef = null;
95  if (typeof(this.doc) != 'undefined') {
96  docRef = this.doc;
97  }
98  doc = load(docRef, "doc", "basefont");
99  nodeList = doc.getElementsByTagName("basefont");
100  assertSize("Asize",1,nodeList);
101 testNode = nodeList.item(0);
102  vcolor = testNode.color;
103 
104  assertEquals("colorLink","#000000",vcolor);
105 
106 }
107 
108 
109 
110 
111 function runTest() {
112  HTMLBaseFontElement01();
113 }

LayoutTests/dom/xhtml/level2/html/HTMLBaseFontElement01.xhtml

1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE html
3  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4  "xhtml1-transitional.dtd">
5 <html xmlns='http://www.w3.org/1999/xhtml'>
6 <head>
7 <title>NIST DOM HTML Test - BaseFont</title>
8 <script type='text/javascript' src='selfxhtml.js'></script><script charset='UTF-8' type='text/javascript' src='HTMLBaseFontElement01.js'></script><script type='text/javascript'>function loadComplete() { startTest(); }</script></head>
9 <body onload="loadComplete()">
10 <p>
11 <basefont color="#000000" face="arial,helvitica" size="4"/>
12 </p>
13 </body>
14 </html>

LayoutTests/dom/xhtml/level2/html/HTMLBaseFontElement02-expected.txt

1 Test http://www.w3.org/2001/DOM-Test-Suite/level2/html/HTMLBaseFontElement02
2 Status Success

LayoutTests/dom/xhtml/level2/html/HTMLBaseFontElement02.js

1 
2 /*
3 Copyright © 2001-2004 World Wide Web Consortium,
4 (Massachusetts Institute of Technology, European Research Consortium
5 for Informatics and Mathematics, Keio University). All
6 Rights Reserved. This work is distributed under the W3C® Software License [1] in the
7 hope that it will be useful, but WITHOUT ANY WARRANTY; without even
8 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
9 
10 [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
11 */
12 
13 
14 
15  /**
16  * Gets URI that identifies the test.
17  * @return uri identifier of test
18  */
19 function getTargetURI() {
20  return "http://www.w3.org/2001/DOM-Test-Suite/level2/html/HTMLBaseFontElement02";
21  }
22 
23 var docsLoaded = -1000000;
24 var builder = null;
25 
26 //
27 // This function is called by the testing framework before
28 // running the test suite.
29 //
30 // If there are no configuration exceptions, asynchronous
31 // document loading is started. Otherwise, the status
32 // is set to complete and the exception is immediately
33 // raised when entering the body of the test.
34 //
35 function setUpPage() {
36  setUpPageStatus = 'running';
37  try {
38  //
39  // creates test document builder, may throw exception
40  //
41  builder = createConfiguredBuilder();
42 
43  docsLoaded = 0;
44 
45  var docRef = null;
46  if (typeof(this.doc) != 'undefined') {
47  docRef = this.doc;
48  }
49  docsLoaded += preload(docRef, "doc", "basefont");
50 
51  if (docsLoaded == 1) {
52  setUpPageStatus = 'complete';
53  }
54  } catch(ex) {
55  catchInitializationError(builder, ex);
56  setUpPageStatus = 'complete';
57  }
58 }
59 
60 
61 
62 //
63 // This method is called on the completion of
64 // each asychronous load started in setUpTests.
65 //
66 // When every synchronous loaded document has completed,
67 // the page status is changed which allows the
68 // body of the test to be executed.
69 function loadComplete() {
70  if (++docsLoaded == 1) {
71  setUpPageStatus = 'complete';
72  }
73 }
74 
75 
76 /**
77 *
78  The face attribute specifies the base font's face identifier.
79 
80  Retrieve the face attribute and examine its value.
81 
82 * @author NIST
83 * @author Mary Brady
84 * @see http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-html#ID-88128969
85 */
86 function HTMLBaseFontElement02() {
87  var success;
88  if(checkInitialization(builder, "HTMLBaseFontElement02") != null) return;
89  var nodeList;
90  var testNode;
91  var vface;
92  var doc;
93 
94  var docRef = null;
95  if (typeof(this.doc) != 'undefined') {
96  docRef = this.doc;
97  }
98  doc = load(docRef, "doc", "basefont");
99  nodeList = doc.getElementsByTagName("basefont");
100  assertSize("Asize",1,nodeList);
101 testNode = nodeList.item(0);
102  vface = testNode.face;
103 
104  assertEquals("faceLink","arial,helvitica",vface);
105 
106 }
107 
108 
109 
110 
111 function runTest() {
112  HTMLBaseFontElement02();
113 }

LayoutTests/dom/xhtml/level2/html/HTMLBaseFontElement02.xhtml

1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE html
3  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4  "xhtml1-transitional.dtd">
5 <html xmlns='http://www.w3.org/1999/xhtml'>
6 <head>
7 <title>NIST DOM HTML Test - BaseFont</title>
8 <script type='text/javascript' src='selfxhtml.js'></script><script charset='UTF-8' type='text/javascript' src='HTMLBaseFontElement02.js'></script><script type='text/javascript'>function loadComplete() { startTest(); }</script></head>
9 <body onload="loadComplete()">
10 <p>
11 <basefont color="#000000" face="arial,helvitica" size="4"/>
12 </p>
13 </body>
14 </html>

LayoutTests/dom/xhtml/level2/html/HTMLBaseFontElement03-expected.txt

1 Test http://www.w3.org/2001/DOM-Test-Suite/level2/html/HTMLBaseFontElement03
2 Status Success

LayoutTests/dom/xhtml/level2/html/HTMLBaseFontElement03.js

1 
2 /*
3 Copyright © 2001-2004 World Wide Web Consortium,
4 (Massachusetts Institute of Technology, European Research Consortium
5 for Informatics and Mathematics, Keio University). All
6 Rights Reserved. This work is distributed under the W3C® Software License [1] in the
7 hope that it will be useful, but WITHOUT ANY WARRANTY; without even
8 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
9 
10 [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
11 */
12 
13 
14 
15  /**
16  * Gets URI that identifies the test.
17  * @return uri identifier of test
18  */
19 function getTargetURI() {
20  return "http://www.w3.org/2001/DOM-Test-Suite/level2/html/HTMLBaseFontElement03";
21  }
22 
23 var docsLoaded = -1000000;
24 var builder = null;
25 
26 //
27 // This function is called by the testing framework before
28 // running the test suite.
29 //
30 // If there are no configuration exceptions, asynchronous
31 // document loading is started. Otherwise, the status
32 // is set to complete and the exception is immediately
33 // raised when entering the body of the test.
34 //
35 function setUpPage() {
36  setUpPageStatus = 'running';
37  try {
38  //
39  // creates test document builder, may throw exception
40  //
41  builder = createConfiguredBuilder();
42 
43  docsLoaded = 0;
44 
45  var docRef = null;
46  if (typeof(this.doc) != 'undefined') {
47  docRef = this.doc;
48  }
49  docsLoaded += preload(docRef, "doc", "basefont");
50 
51  if (docsLoaded == 1) {
52  setUpPageStatus = 'complete';
53  }
54  } catch(ex) {
55  catchInitializationError(builder, ex);
56  setUpPageStatus = 'complete';
57  }
58 }
59 
60 
61 
62 //
63 // This method is called on the completion of
64 // each asychronous load started in setUpTests.
65 //
66 // When every synchronous loaded document has completed,
67 // the page status is changed which allows the
68 // body of the test to be executed.
69 function loadComplete() {
70  if (++docsLoaded == 1) {
71  setUpPageStatus = 'complete';
72  }
73 }
74 
75 
76 /**
77 *
78  The size attribute specifies the base font's size.
79 
80  Retrieve the size attribute and examine it's value.
81 
82 * @author NIST
83 * @author Mary Brady
84 * @see http://www.w3.org/TR/DOM-Level-2-HTML/html#ID-38930424
85 */
86 function HTMLBaseFontElement03() {
87  var success;
88  if(checkInitialization(builder, "HTMLBaseFontElement03") != null) return;
89  var nodeList;
90  var testNode;
91  var vsize;
92  var doc;
93 
94  var docRef = null;
95  if (typeof(this.doc) != 'undefined') {
96  docRef = this.doc;
97  }
98  doc = load(docRef, "doc", "basefont");
99  nodeList = doc.getElementsByTagName("basefont");
100  assertSize("Asize",1,nodeList);
101 testNode = nodeList.item(0);
102  vsize = testNode.size;
103 
104  assertEquals("sizeLink",4,vsize);
105 
106 }
107 
108 
109 
110 
111 function runTest() {
112  HTMLBaseFontElement03();
113 }

LayoutTests/dom/xhtml/level2/html/HTMLBaseFontElement03.xhtml

1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE html
3  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4  "xhtml1-transitional.dtd">
5 <html xmlns='http://www.w3.org/1999/xhtml'>
6 <head>
7 <title>NIST DOM HTML Test - BaseFont</title>
8 <script type='text/javascript' src='selfxhtml.js'></script><script charset='UTF-8' type='text/javascript' src='HTMLBaseFontElement03.js'></script><script type='text/javascript'>function loadComplete() { startTest(); }</script></head>
9 <body onload="loadComplete()">
10 <p>
11 <basefont color="#000000" face="arial,helvitica" size="4"/>
12 </p>
13 </body>
14 </html>

LayoutTests/dom/xhtml/level2/html/basefont01.xhtml

1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE html
3  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4  "xhtml1-transitional.dtd">
5 <html xmlns='http://www.w3.org/1999/xhtml'>
6 <head>
7 <title>NIST DOM HTML Test - BaseFont</title>
8 <script type='text/javascript' src='selfxhtml.js'></script><script charset='UTF-8' type='text/javascript' src='basefont01.js'></script><script type='text/javascript'>function loadComplete() { startTest(); }</script></head>
9 <body onload="loadComplete()">
10 <p>
11 <basefont color="#000000" face="arial,helvitica" size="4"/>
12 </p>
13 </body>
14 </html>

LayoutTests/fast/dom/Window/element-constructors-on-window-expected.txt

@@HTMLAreaElement: [object HTMLAreaElementConstructor]
1010
1111HTMLBaseElement: [object HTMLBaseElementConstructor]
1212
13 HTMLBaseFontElement: [object HTMLBaseFontElementConstructor]
14 
1513HTMLBodyElement: [object HTMLBodyElementConstructor]
1614
1715HTMLBRElement: [object HTMLBRElementConstructor]

LayoutTests/fast/dom/Window/element-constructors-on-window.html

@@test("HTMLAnchorElement");
1616test("HTMLAppletElement");
1717test("HTMLAreaElement");
1818test("HTMLBaseElement");
19 test("HTMLBaseFontElement");
2019test("HTMLBodyElement");
2120test("HTMLBRElement");
2221test("HTMLButtonElement");

LayoutTests/fast/dom/Window/get-set-properties-expected.txt

@@PASS: canGet('HTMLBRElement') should be 'true' and is.
5151PASS: canSet('HTMLBRElement') should be 'true' and is.
5252PASS: canGet('HTMLBaseElement') should be 'true' and is.
5353PASS: canSet('HTMLBaseElement') should be 'true' and is.
54 PASS: canGet('HTMLBaseFontElement') should be 'true' and is.
 54*** FAIL: canGet('HTMLBaseFontElement') should be 'true' but instead is false. ***
5555PASS: canSet('HTMLBaseFontElement') should be 'true' and is.
5656PASS: canGet('HTMLBodyElement') should be 'true' and is.
5757PASS: canSet('HTMLBodyElement') should be 'true' and is.

LayoutTests/fast/dom/Window/resources/window-properties.js

@@var propertyInfo = [
6565 ["HTMLAreaElement", "object"],
6666 ["HTMLBRElement", "object"],
6767 ["HTMLBaseElement", "object"],
68  ["HTMLBaseFontElement", "object"],
6968 ["HTMLBodyElement", "object"],
7069 ["HTMLButtonElement", "object"],
7170 ["HTMLCanvasElement", "object"],

LayoutTests/fast/dom/Window/window-lookup-precedence-expected.txt

@@PASS win['HTMLBRElement'] == '[object HTMLBRElementConstructor]' is true
132132PASS win['HTMLBRElement'] == '[object HTMLBRElementConstructor]' is true
133133PASS win['HTMLBaseElement'] == '[object HTMLBaseElementConstructor]' is true
134134PASS win['HTMLBaseElement'] == '[object HTMLBaseElementConstructor]' is true
135 PASS win['HTMLBaseFontElement'] == '[object HTMLBaseFontElementConstructor]' is true
136 PASS win['HTMLBaseFontElement'] == '[object HTMLBaseFontElementConstructor]' is true
137135PASS win['HTMLBodyElement'] == '[object HTMLBodyElementConstructor]' is true
138136PASS win['HTMLBodyElement'] == '[object HTMLBodyElementConstructor]' is true
139137PASS win['HTMLButtonElement'] == '[object HTMLButtonElementConstructor]' is true

LayoutTests/fast/dom/dom-constructors-expected.txt

@@PASS TryAllocate('HTMLAnchorElement') is 'exception'
2323PASS TryAllocate('HTMLAppletElement') is 'exception'
2424PASS TryAllocate('HTMLAreaElement') is 'exception'
2525PASS TryAllocate('HTMLBaseElement') is 'exception'
26 PASS TryAllocate('HTMLBaseFontElement') is 'exception'
2726PASS TryAllocate('HTMLBodyElement') is 'exception'
2827PASS TryAllocate('HTMLBRElement') is 'exception'
2928PASS TryAllocate('HTMLButtonElement') is 'exception'

LayoutTests/fast/dom/dom-constructors.html

@@var objects_exception = [
1717 'DocumentFragment', 'DocumentType', 'Element', 'Entity',
1818 'EntityReference', 'HTMLDocument', 'Node', 'Notation',
1919 'ProcessingInstruction', 'Text', 'HTMLAllCollection', 'HTMLAnchorElement',
20  'HTMLAppletElement', 'HTMLAreaElement', 'HTMLBaseElement',
21  'HTMLBaseFontElement', 'HTMLBodyElement',
 20 'HTMLAppletElement', 'HTMLAreaElement', 'HTMLBaseElement', 'HTMLBodyElement',
2221 'HTMLBRElement', 'HTMLButtonElement', 'HTMLCanvasElement',
2322 'HTMLDirectoryElement', 'HTMLDivElement', 'HTMLDListElement',
2423 'HTMLEmbedElement', 'HTMLFieldSetElement', 'HTMLFontElement',

LayoutTests/fast/dom/element-attribute-js-null-expected.txt

@@TEST SUCCEEDED: The value was the empty string. [tested HTMLAreaElement.target]
4646
4747TEST SUCCEEDED: The value was the empty string. [tested HTMLBaseElement.target]
4848
49 TEST SUCCEEDED: The value was the empty string. [tested HTMLBaseFontElement.color]
50 TEST SUCCEEDED: The value was the empty string. [tested HTMLBaseFontElement.face]
51 
5249TEST SUCCEEDED: The value was the empty string. [tested HTMLBlockquoteElement.cite]
5350
5451TEST SUCCEEDED: The value was the empty string. [tested HTMLBodyElement.aLink]

LayoutTests/fast/dom/element-attribute-js-null.html

146146 ]
147147 },
148148 {
149  type: 'HTMLBaseFontElement',
150  elementToUse: document.createElement('basefont'),
151  attributes: [
152  {name: 'color', expectedNull: ''},
153  {name: 'face', expectedNull: ''}
154  ]
155  },
156  {
157149 type: 'HTMLBlockquoteElement',
158150 elementToUse: document.createElement('blockquote'),
159151 attributes: [

LayoutTests/fast/dom/html-attribute-types-expected.txt

11This checks the types of some HTML DOM attributes whose types currently clash with our implementation.
22PASS typeof img.border is 'string'
33PASS typeof pre.width is 'number'
4 PASS typeof basefont.size is 'number'
54

LayoutTests/fast/dom/html-attribute-types.html

@@function test() {
1414
1515 pre = document.createElement('pre');
1616 shouldBe("typeof pre.width", "'number'");
17 
18  basefont = document.createElement('basefont');
19  shouldBe("typeof basefont.size", "'number'")
2017}
2118</script>
2219</head>

LayoutTests/fast/dom/wrapper-classes-expected.txt

@@PASS tagJSWrapperConstructorClass('b') is 'HTMLElementConstructor'
176176PASS tagJSWrapperClass('base') is 'HTMLBaseElement'
177177PASS tagJSWrapperPrototypeClass('base') is 'HTMLBaseElementPrototype'
178178PASS tagJSWrapperConstructorClass('base') is 'HTMLBaseElementConstructor'
179 PASS tagJSWrapperClass('basefont') is 'HTMLBaseFontElement'
180 PASS tagJSWrapperPrototypeClass('basefont') is 'HTMLBaseFontElementPrototype'
181 PASS tagJSWrapperConstructorClass('basefont') is 'HTMLBaseFontElementConstructor'
 179PASS tagJSWrapperClass('basefont') is 'HTMLUnknownElement'
 180PASS tagJSWrapperPrototypeClass('basefont') is 'HTMLUnknownElementPrototype'
 181PASS tagJSWrapperConstructorClass('basefont') is 'HTMLUnknownElementConstructor'
182182PASS tagJSWrapperClass('bdo') is 'HTMLElement'
183183PASS tagJSWrapperPrototypeClass('bdo') is 'HTMLElementPrototype'
184184PASS tagJSWrapperConstructorClass('bdo') is 'HTMLElementConstructor'

LayoutTests/fast/dom/wrapper-classes.html

@@function runTest()
157157 testTag("aside", "HTMLElement");
158158 testTag("b", "HTMLElement");
159159 testTag("base", "HTMLBaseElement");
160  testTag("basefont", "HTMLBaseFontElement");
 160 testTag("basefont", "HTMLUnknownElement");
161161 testTag("bdo", "HTMLElement");
162162 testTag("big", "HTMLElement");
163163 testTag("blockquote", "HTMLQuoteElement");

LayoutTests/http/tests/security/cross-frame-access-put-expected.txt

@@ALERT: PASS: window.HTMLAnchorElement should be '[object HTMLAnchorElementConstr
208208ALERT: PASS: window.HTMLAppletElement should be '[object HTMLAppletElementConstructor]' and is.
209209ALERT: PASS: window.HTMLAreaElement should be '[object HTMLAreaElementConstructor]' and is.
210210ALERT: PASS: window.HTMLBaseElement should be '[object HTMLBaseElementConstructor]' and is.
211 ALERT: PASS: window.HTMLBaseFontElement should be '[object HTMLBaseFontElementConstructor]' and is.
 211ALERT: PASS: window.HTMLBaseFontElement should be 'undefined' and is.
212212ALERT: PASS: window.HTMLBodyElement should be '[object HTMLBodyElementConstructor]' and is.
213213ALERT: PASS: window.HTMLBRElement should be '[object HTMLBRElementConstructor]' and is.
214214ALERT: PASS: window.HTMLButtonElement should be '[object HTMLButtonElementConstructor]' and is.

LayoutTests/js/dom/global-constructors-attributes-expected.txt

@@PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseElement').hasOwnProperty('
388388PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseElement').hasOwnProperty('set') is false
389389PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseElement').enumerable is false
390390PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseElement').configurable is true
391 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').value is HTMLBaseFontElement
392 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').hasOwnProperty('get') is false
393 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').hasOwnProperty('set') is false
394 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').enumerable is false
395 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').configurable is true
396391PASS Object.getOwnPropertyDescriptor(global, 'HTMLBodyElement').value is HTMLBodyElement
397392PASS Object.getOwnPropertyDescriptor(global, 'HTMLBodyElement').hasOwnProperty('get') is false
398393PASS Object.getOwnPropertyDescriptor(global, 'HTMLBodyElement').hasOwnProperty('set') is false

LayoutTests/platform/efl/js/dom/global-constructors-attributes-expected.txt

@@PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseElement').hasOwnProperty('
413413PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseElement').hasOwnProperty('set') is false
414414PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseElement').enumerable is false
415415PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseElement').configurable is true
416 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').value is HTMLBaseFontElement
417 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').hasOwnProperty('get') is false
418 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').hasOwnProperty('set') is false
419 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').enumerable is false
420 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').configurable is true
421416PASS Object.getOwnPropertyDescriptor(global, 'HTMLBodyElement').value is HTMLBodyElement
422417PASS Object.getOwnPropertyDescriptor(global, 'HTMLBodyElement').hasOwnProperty('get') is false
423418PASS Object.getOwnPropertyDescriptor(global, 'HTMLBodyElement').hasOwnProperty('set') is false

LayoutTests/platform/gtk-wk2/js/dom/global-constructors-attributes-expected.txt

@@PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseElement').hasOwnProperty('
388388PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseElement').hasOwnProperty('set') is false
389389PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseElement').enumerable is false
390390PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseElement').configurable is true
391 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').value is HTMLBaseFontElement
392 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').hasOwnProperty('get') is false
393 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').hasOwnProperty('set') is false
394 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').enumerable is false
395 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').configurable is true
396391PASS Object.getOwnPropertyDescriptor(global, 'HTMLBodyElement').value is HTMLBodyElement
397392PASS Object.getOwnPropertyDescriptor(global, 'HTMLBodyElement').hasOwnProperty('get') is false
398393PASS Object.getOwnPropertyDescriptor(global, 'HTMLBodyElement').hasOwnProperty('set') is false

LayoutTests/platform/gtk/fast/dom/Window/window-lookup-precedence-expected.txt

@@PASS win['HTMLBRElement'] == '[object HTMLBRElementConstructor]' is true
132132PASS win['HTMLBRElement'] == '[object HTMLBRElementConstructor]' is true
133133PASS win['HTMLBaseElement'] == '[object HTMLBaseElementConstructor]' is true
134134PASS win['HTMLBaseElement'] == '[object HTMLBaseElementConstructor]' is true
135 PASS win['HTMLBaseFontElement'] == '[object HTMLBaseFontElementConstructor]' is true
136 PASS win['HTMLBaseFontElement'] == '[object HTMLBaseFontElementConstructor]' is true
137135PASS win['HTMLBodyElement'] == '[object HTMLBodyElementConstructor]' is true
138136PASS win['HTMLBodyElement'] == '[object HTMLBodyElementConstructor]' is true
139137PASS win['HTMLButtonElement'] == '[object HTMLButtonElementConstructor]' is true

LayoutTests/platform/gtk/js/dom/global-constructors-attributes-expected.txt

@@PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseElement').hasOwnProperty('
388388PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseElement').hasOwnProperty('set') is false
389389PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseElement').enumerable is false
390390PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseElement').configurable is true
391 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').value is HTMLBaseFontElement
392 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').hasOwnProperty('get') is false
393 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').hasOwnProperty('set') is false
394 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').enumerable is false
395 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').configurable is true
396391PASS Object.getOwnPropertyDescriptor(global, 'HTMLBodyElement').value is HTMLBodyElement
397392PASS Object.getOwnPropertyDescriptor(global, 'HTMLBodyElement').hasOwnProperty('get') is false
398393PASS Object.getOwnPropertyDescriptor(global, 'HTMLBodyElement').hasOwnProperty('set') is false

LayoutTests/platform/mac-lion/js/dom/global-constructors-attributes-expected.txt

@@PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseElement').hasOwnProperty('
388388PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseElement').hasOwnProperty('set') is false
389389PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseElement').enumerable is false
390390PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseElement').configurable is true
391 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').value is HTMLBaseFontElement
392 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').hasOwnProperty('get') is false
393 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').hasOwnProperty('set') is false
394 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').enumerable is false
395 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').configurable is true
396391PASS Object.getOwnPropertyDescriptor(global, 'HTMLBodyElement').value is HTMLBodyElement
397392PASS Object.getOwnPropertyDescriptor(global, 'HTMLBodyElement').hasOwnProperty('get') is false
398393PASS Object.getOwnPropertyDescriptor(global, 'HTMLBodyElement').hasOwnProperty('set') is false

LayoutTests/platform/mac/fast/dom/Window/window-lookup-precedence-expected.txt

@@PASS win['HTMLBRElement'] == '[object HTMLBRElementConstructor]' is true
132132PASS win['HTMLBRElement'] == '[object HTMLBRElementConstructor]' is true
133133PASS win['HTMLBaseElement'] == '[object HTMLBaseElementConstructor]' is true
134134PASS win['HTMLBaseElement'] == '[object HTMLBaseElementConstructor]' is true
135 PASS win['HTMLBaseFontElement'] == '[object HTMLBaseFontElementConstructor]' is true
136 PASS win['HTMLBaseFontElement'] == '[object HTMLBaseFontElementConstructor]' is true
137135PASS win['HTMLBodyElement'] == '[object HTMLBodyElementConstructor]' is true
138136PASS win['HTMLBodyElement'] == '[object HTMLBodyElementConstructor]' is true
139137PASS win['HTMLButtonElement'] == '[object HTMLButtonElementConstructor]' is true

LayoutTests/platform/qt/js/dom/global-constructors-attributes-expected.txt

@@PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseElement').hasOwnProperty('
323323PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseElement').hasOwnProperty('set') is false
324324PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseElement').enumerable is false
325325PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseElement').configurable is true
326 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').value is HTMLBaseFontElement
327 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').hasOwnProperty('get') is false
328 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').hasOwnProperty('set') is false
329 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').enumerable is false
330 PASS Object.getOwnPropertyDescriptor(global, 'HTMLBaseFontElement').configurable is true
331326PASS Object.getOwnPropertyDescriptor(global, 'HTMLBodyElement').value is HTMLBodyElement
332327PASS Object.getOwnPropertyDescriptor(global, 'HTMLBodyElement').hasOwnProperty('get') is false
333328PASS Object.getOwnPropertyDescriptor(global, 'HTMLBodyElement').hasOwnProperty('set') is false

Source/WebCore/CMakeLists.txt

@@set(WebCore_IDL_FILES
432432 html/HTMLAudioElement.idl
433433 html/HTMLBRElement.idl
434434 html/HTMLBaseElement.idl
435  html/HTMLBaseFontElement.idl
436435 html/HTMLBodyElement.idl
437436 html/HTMLButtonElement.idl
438437 html/HTMLCanvasElement.idl

@@set(WebCore_SOURCES
13711370 html/HTMLAudioElement.cpp
13721371 html/HTMLBRElement.cpp
13731372 html/HTMLBaseElement.cpp
1374  html/HTMLBaseFontElement.cpp
13751373 html/HTMLBodyElement.cpp
13761374 html/HTMLButtonElement.cpp
13771375 html/HTMLCanvasElement.cpp

Source/WebCore/DerivedSources.cpp

176176#include "JSHTMLAreaElement.cpp"
177177#include "JSHTMLAudioElement.cpp"
178178#include "JSHTMLBaseElement.cpp"
179 #include "JSHTMLBaseFontElement.cpp"
180179#include "JSHTMLBodyElement.cpp"
181180#include "JSHTMLBRElement.cpp"
182181#include "JSHTMLButtonElement.cpp"

Source/WebCore/DerivedSources.make

@@BINDING_IDLS = \
340340 $(WebCore)/html/HTMLAudioElement.idl \
341341 $(WebCore)/html/HTMLBRElement.idl \
342342 $(WebCore)/html/HTMLBaseElement.idl \
343  $(WebCore)/html/HTMLBaseFontElement.idl \
344343 $(WebCore)/html/HTMLBodyElement.idl \
345344 $(WebCore)/html/HTMLButtonElement.idl \
346345 $(WebCore)/html/HTMLCanvasElement.idl \

Source/WebCore/DerivedSources.pri

@@IDL_BINDINGS += \
348348 $$PWD/html/HTMLAppletElement.idl \
349349 $$PWD/html/HTMLAreaElement.idl \
350350 $$PWD/html/HTMLBaseElement.idl \
351  $$PWD/html/HTMLBaseFontElement.idl \
352351 $$PWD/html/HTMLBodyElement.idl \
353352 $$PWD/html/HTMLBRElement.idl \
354353 $$PWD/html/HTMLButtonElement.idl \

Source/WebCore/GNUmakefile.list.am

@@webcore_built_sources += \
315315 DerivedSources/WebCore/JSHTMLAudioElement.h \
316316 DerivedSources/WebCore/JSHTMLBaseElement.cpp \
317317 DerivedSources/WebCore/JSHTMLBaseElement.h \
318  DerivedSources/WebCore/JSHTMLBaseFontElement.cpp \
319  DerivedSources/WebCore/JSHTMLBaseFontElement.h \
320318 DerivedSources/WebCore/JSHTMLBodyElement.cpp \
321319 DerivedSources/WebCore/JSHTMLBodyElement.h \
322320 DerivedSources/WebCore/JSHTMLBRElement.cpp \

@@dom_binding_idls += \
14641462 $(WebCore)/html/HTMLAudioElement.idl \
14651463 $(WebCore)/html/HTMLBRElement.idl \
14661464 $(WebCore)/html/HTMLBaseElement.idl \
1467  $(WebCore)/html/HTMLBaseFontElement.idl \
14681465 $(WebCore)/html/HTMLBodyElement.idl \
14691466 $(WebCore)/html/HTMLButtonElement.idl \
14701467 $(WebCore)/html/HTMLCanvasElement.idl \

@@webcore_sources += \
34253422 Source/WebCore/html/HTMLAudioElement.h \
34263423 Source/WebCore/html/HTMLBaseElement.cpp \
34273424 Source/WebCore/html/HTMLBaseElement.h \
3428  Source/WebCore/html/HTMLBaseFontElement.cpp \
3429  Source/WebCore/html/HTMLBaseFontElement.h \
34303425 Source/WebCore/html/HTMLBDIElement.h \
34313426 Source/WebCore/html/HTMLBodyElement.cpp \
34323427 Source/WebCore/html/HTMLBodyElement.h \

Source/WebCore/Target.pri

@@SOURCES += \
587587 html/HTMLAreaElement.cpp \
588588 html/HTMLBRElement.cpp \
589589 html/HTMLBaseElement.cpp \
590  html/HTMLBaseFontElement.cpp \
591590 html/HTMLBodyElement.cpp \
592591 html/HTMLButtonElement.cpp \
593592 html/HTMLCanvasElement.cpp \

@@HEADERS += \
17801779 html/HTMLAreaElement.h \
17811780 html/HTMLAudioElement.h \
17821781 html/HTMLBaseElement.h \
1783  html/HTMLBaseFontElement.h \
17841782 html/HTMLBodyElement.h \
17851783 html/HTMLBDIElement.h \
17861784 html/HTMLBRElement.h \

Source/WebCore/WebCore.exp.in

@@_wkSignalCFReadStreamHasBytes
17971797.objc_class_name_DOMEntityReference
17981798.objc_class_name_DOMHTMLBRElement
17991799.objc_class_name_DOMHTMLBaseElement
1800 .objc_class_name_DOMHTMLBaseFontElement
18011800.objc_class_name_DOMHTMLCollection
18021801.objc_class_name_DOMHTMLDListElement
18031802.objc_class_name_DOMHTMLDirectoryElement

Source/WebCore/WebCore.order

@@_OBJC_METACLASS_$_DOMHTMLAreaElement
2002820028_OBJC_CLASS_$_DOMHTMLAreaElement
2002920029_OBJC_METACLASS_$_DOMHTMLBaseElement
2003020030_OBJC_CLASS_$_DOMHTMLBaseElement
20031 _OBJC_METACLASS_$_DOMHTMLBaseFontElement
20032 _OBJC_CLASS_$_DOMHTMLBaseFontElement
2003320031_OBJC_METACLASS_$_DOMHTMLBodyElement
2003420032_OBJC_CLASS_$_DOMHTMLBodyElement
2003520033_OBJC_METACLASS_$_DOMHTMLBRElement

@@__ZN7WebCore28JSHTMLBaseElementConstructor6s_infoE
2156621564__ZN7WebCore26JSHTMLBaseElementPrototype6s_infoE
2156721565__ZN7WebCore17JSHTMLBaseElement6s_infoE
2156821566__ZN7WebCoreL28JSHTMLBaseElementTableValuesE
21569 __ZN7WebCore32JSHTMLBaseFontElementConstructor6s_infoE
21570 __ZN7WebCore30JSHTMLBaseFontElementPrototype6s_infoE
21571 __ZN7WebCore21JSHTMLBaseFontElement6s_infoE
21572 __ZN7WebCoreL32JSHTMLBaseFontElementTableValuesE
2157321567__ZN7WebCore28JSHTMLBodyElementConstructor6s_infoE
2157421568__ZN7WebCore26JSHTMLBodyElementPrototype6s_infoE
2157521569__ZN7WebCore17JSHTMLBodyElement6s_infoE

@@__ZTVN3WTF21MemoryInstrumentation7WrapperINS_6VectorINS_6RefPtrIN7WebCore10HRTFK
2431324307__ZTVN3WTF21MemoryInstrumentation7WrapperIN7WebCore10HRTFKernelEEE
2431424308__ZTVN3WTF21MemoryInstrumentation7WrapperIN7WebCore8FFTFrameEEE
2431524309__ZTVN7WebCore16HTMLAudioElementE
24316 __ZTVN7WebCore19HTMLBaseFontElementE
2431724310__ZTVN3WTF21MemoryInstrumentation7WrapperIN7WebCore25GraphicsContextStateSaverEEE
2431824311__ZTVN3WTF21MemoryInstrumentation7WrapperIN7WebCore22CanvasRenderingContextEEE
2431924312__ZTVN7WebCore21DetailsSummaryElementE

@@__ZN7WebCoreL23JSHTMLAudioElementTableE
2487524868__ZN7WebCoreL33JSHTMLBaseElementConstructorTableE
2487624869__ZN7WebCoreL31JSHTMLBaseElementPrototypeTableE
2487724870__ZN7WebCoreL22JSHTMLBaseElementTableE
24878 __ZN7WebCoreL37JSHTMLBaseFontElementConstructorTableE
24879 __ZN7WebCoreL35JSHTMLBaseFontElementPrototypeTableE
24880 __ZN7WebCoreL26JSHTMLBaseFontElementTableE
2488124871__ZN7WebCoreL33JSHTMLBodyElementConstructorTableE
2488224872__ZN7WebCoreL31JSHTMLBodyElementPrototypeTableE
2488324873__ZN7WebCoreL31JSHTMLBRElementConstructorTableE

Source/WebCore/WebCore.vcxproj/WebCore.vcxproj

21402140 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|Win32'">true</ExcludedFromBuild>
21412141 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|x64'">true</ExcludedFromBuild>
21422142 </ClCompile>
2143  <ClCompile Include="$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSHTMLBaseFontElement.cpp">
2144  <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
2145  <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
2146  <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'">true</ExcludedFromBuild>
2147  <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|x64'">true</ExcludedFromBuild>
2148  <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'">true</ExcludedFromBuild>
2149  <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|x64'">true</ExcludedFromBuild>
2150  <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
2151  <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
2152  <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'">true</ExcludedFromBuild>
2153  <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|x64'">true</ExcludedFromBuild>
2154  <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|Win32'">true</ExcludedFromBuild>
2155  <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|x64'">true</ExcludedFromBuild>
2156  </ClCompile>
21572143 <ClCompile Include="$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSHTMLBodyElement.cpp">
21582144 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
21592145 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>

1452214508 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|Win32'">true</ExcludedFromBuild>
1452314509 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|x64'">true</ExcludedFromBuild>
1452414510 </ClCompile>
14525  <ClCompile Include="..\html\HTMLBaseFontElement.cpp">
14526  <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
14527  <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
14528  <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'">true</ExcludedFromBuild>
14529  <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|x64'">true</ExcludedFromBuild>
14530  <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'">true</ExcludedFromBuild>
14531  <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|x64'">true</ExcludedFromBuild>
14532  <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
14533  <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
14534  <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'">true</ExcludedFromBuild>
14535  <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|x64'">true</ExcludedFromBuild>
14536  <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|Win32'">true</ExcludedFromBuild>
14537  <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|x64'">true</ExcludedFromBuild>
14538  </ClCompile>
1453914511 <ClCompile Include="..\html\HTMLBodyElement.cpp">
1454014512 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
1454114513 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>

1812218094 <ClInclude Include="$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSHTMLAreaElement.h" />
1812318095 <ClInclude Include="$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSHTMLAudioElement.h" />
1812418096 <ClInclude Include="$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSHTMLBaseElement.h" />
18125  <ClInclude Include="$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSHTMLBaseFontElement.h" />
1812618097 <ClInclude Include="$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSHTMLBodyElement.h" />
1812718098 <ClInclude Include="$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSHTMLBRElement.h" />
1812818099 <ClInclude Include="$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSHTMLButtonElement.h" />

2027020241 <ClInclude Include="..\html\HTMLAreaElement.h" />
2027120242 <ClInclude Include="..\html\HTMLAudioElement.h" />
2027220243 <ClInclude Include="..\html\HTMLBaseElement.h" />
20273  <ClInclude Include="..\html\HTMLBaseFontElement.h" />
2027420244 <ClInclude Include="..\html\HTMLBDIElement.h" />
2027520245 <ClInclude Include="..\html\HTMLBodyElement.h" />
2027620246 <ClInclude Include="..\html\HTMLBRElement.h" />

Source/WebCore/WebCore.vcxproj/WebCore.vcxproj.filters

38463846 <ClCompile Include="..\html\HTMLBaseElement.cpp">
38473847 <Filter>html</Filter>
38483848 </ClCompile>
3849  <ClCompile Include="..\html\HTMLBaseFontElement.cpp">
3850  <Filter>html</Filter>
3851  </ClCompile>
38523849 <ClCompile Include="..\html\HTMLBodyElement.cpp">
38533850 <Filter>html</Filter>
38543851 </ClCompile>

57135710 <ClCompile Include="$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSHTMLBaseElement.cpp">
57145711 <Filter>DerivedSources</Filter>
57155712 </ClCompile>
5716  <ClCompile Include="$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSHTMLBaseFontElement.cpp">
5717  <Filter>DerivedSources</Filter>
5718  </ClCompile>
57195713 <ClCompile Include="$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSHTMLBodyElement.cpp">
57205714 <Filter>DerivedSources</Filter>
57215715 </ClCompile>

1095310947 <ClInclude Include="..\html\HTMLBaseElement.h">
1095410948 <Filter>html</Filter>
1095510949 </ClInclude>
10956  <ClInclude Include="..\html\HTMLBaseFontElement.h">
10957  <Filter>html</Filter>
10958  </ClInclude>
1095910950 <ClInclude Include="..\html\HTMLBDIElement.h">
1096010951 <Filter>html</Filter>
1096110952 </ClInclude>

1348113472 <ClInclude Include="$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSHTMLBaseElement.h">
1348213473 <Filter>DerivedSources</Filter>
1348313474 </ClInclude>
13484  <ClInclude Include="$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSHTMLBaseFontElement.h">
13485  <Filter>DerivedSources</Filter>
13486  </ClInclude>
1348713475 <ClInclude Include="$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\DerivedSources\JSHTMLBodyElement.h">
1348813476 <Filter>DerivedSources</Filter>
1348913477 </ClInclude>

Source/WebCore/WebCore.xcodeproj/project.pbxproj

719719 1ADA14110E1AE5D900023EE5 /* PluginMainThreadScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ADA140F0E1AE5D900023EE5 /* PluginMainThreadScheduler.h */; settings = {ATTRIBUTES = (Private, ); }; };
720720 1AE2AA1E0A1CDAB400B42B25 /* JSHTMLAreaElement.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AE2AA0A0A1CDAB300B42B25 /* JSHTMLAreaElement.cpp */; };
721721 1AE2AA1F0A1CDAB400B42B25 /* JSHTMLAreaElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AE2AA0B0A1CDAB300B42B25 /* JSHTMLAreaElement.h */; };
722  1AE2AA200A1CDAB400B42B25 /* JSHTMLBaseFontElement.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AE2AA0C0A1CDAB300B42B25 /* JSHTMLBaseFontElement.cpp */; };
723  1AE2AA210A1CDAB400B42B25 /* JSHTMLBaseFontElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AE2AA0D0A1CDAB300B42B25 /* JSHTMLBaseFontElement.h */; };
724722 1AE2AA220A1CDAB400B42B25 /* JSHTMLBodyElement.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AE2AA0E0A1CDAB300B42B25 /* JSHTMLBodyElement.cpp */; };
725723 1AE2AA230A1CDAB400B42B25 /* JSHTMLBodyElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AE2AA0F0A1CDAB300B42B25 /* JSHTMLBodyElement.h */; };
726724 1AE2AA240A1CDAB400B42B25 /* JSHTMLBRElement.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AE2AA100A1CDAB300B42B25 /* JSHTMLBRElement.cpp */; };

26132611 85E7119B0AC5D5350053270F /* DOMHTMLAnchorElementInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 85E7114C0AC5D5340053270F /* DOMHTMLAnchorElementInternal.h */; };
26142612 85E7119C0AC5D5350053270F /* DOMHTMLAreaElementInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 85E7114D0AC5D5340053270F /* DOMHTMLAreaElementInternal.h */; };
26152613 85E7119D0AC5D5350053270F /* DOMHTMLBaseElementInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 85E7114E0AC5D5340053270F /* DOMHTMLBaseElementInternal.h */; };
2616  85E7119E0AC5D5350053270F /* DOMHTMLBaseFontElementInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 85E7114F0AC5D5340053270F /* DOMHTMLBaseFontElementInternal.h */; };
26172614 85E7119F0AC5D5350053270F /* DOMHTMLBodyElementInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 85E711500AC5D5340053270F /* DOMHTMLBodyElementInternal.h */; };
26182615 85E711A00AC5D5350053270F /* DOMHTMLBRElementInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 85E711510AC5D5340053270F /* DOMHTMLBRElementInternal.h */; };
26192616 85E711A10AC5D5350053270F /* DOMHTMLButtonElementInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 85E711520AC5D5340053270F /* DOMHTMLButtonElementInternal.h */; };

26842681 85EC9AFB0A71A2C600EEEAED /* Language.h in Headers */ = {isa = PBXBuildFile; fileRef = 85EC9AF90A71A2C600EEEAED /* Language.h */; settings = {ATTRIBUTES = (Private, ); }; };
26852682 85ECBEEB0AA7626900544F0B /* DOMHTMLAreaElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 85ECBEDD0AA7626800544F0B /* DOMHTMLAreaElement.h */; };
26862683 85ECBEEC0AA7626900544F0B /* DOMHTMLAreaElement.mm in Sources */ = {isa = PBXBuildFile; fileRef = 85ECBEDE0AA7626800544F0B /* DOMHTMLAreaElement.mm */; };
2687  85ECBEED0AA7626900544F0B /* DOMHTMLBaseFontElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 85ECBEDF0AA7626800544F0B /* DOMHTMLBaseFontElement.h */; };
2688  85ECBEEE0AA7626900544F0B /* DOMHTMLBaseFontElement.mm in Sources */ = {isa = PBXBuildFile; fileRef = 85ECBEE00AA7626800544F0B /* DOMHTMLBaseFontElement.mm */; };
26892684 85ECBEEF0AA7626900544F0B /* DOMHTMLFontElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 85ECBEE10AA7626800544F0B /* DOMHTMLFontElement.h */; };
26902685 85ECBEF00AA7626900544F0B /* DOMHTMLFontElement.mm in Sources */ = {isa = PBXBuildFile; fileRef = 85ECBEE20AA7626800544F0B /* DOMHTMLFontElement.mm */; };
26912686 85ECBEF10AA7626900544F0B /* DOMHTMLHRElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 85ECBEE30AA7626800544F0B /* DOMHTMLHRElement.h */; };

26972692 85ECBEF70AA7626900544F0B /* DOMHTMLParamElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 85ECBEE90AA7626900544F0B /* DOMHTMLParamElement.h */; };
26982693 85ECBEF80AA7626900544F0B /* DOMHTMLParamElement.mm in Sources */ = {isa = PBXBuildFile; fileRef = 85ECBEEA0AA7626900544F0B /* DOMHTMLParamElement.mm */; };
26992694 85ECBF080AA7628900544F0B /* DOMHTMLAreaElement.h in Copy Generated Headers */ = {isa = PBXBuildFile; fileRef = 85ECBEDD0AA7626800544F0B /* DOMHTMLAreaElement.h */; };
2700  85ECBF090AA7628900544F0B /* DOMHTMLBaseFontElement.h in Copy Generated Headers */ = {isa = PBXBuildFile; fileRef = 85ECBEDF0AA7626800544F0B /* DOMHTMLBaseFontElement.h */; };
27012695 85ECBF0A0AA7628900544F0B /* DOMHTMLFontElement.h in Copy Generated Headers */ = {isa = PBXBuildFile; fileRef = 85ECBEE10AA7626800544F0B /* DOMHTMLFontElement.h */; };
27022696 85ECBF0B0AA7628900544F0B /* DOMHTMLHRElement.h in Copy Generated Headers */ = {isa = PBXBuildFile; fileRef = 85ECBEE30AA7626800544F0B /* DOMHTMLHRElement.h */; };
27032697 85ECBF0C0AA7628900544F0B /* DOMHTMLMapElement.h in Copy Generated Headers */ = {isa = PBXBuildFile; fileRef = 85ECBEE50AA7626800544F0B /* DOMHTMLMapElement.h */; };

38613855 A8DF3FCF097FA0FC0052981B /* HTMLFormControlsCollection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8DF3FC7097FA0FB0052981B /* HTMLFormControlsCollection.cpp */; };
38623856 A8DF3FD0097FA0FC0052981B /* HTMLCollection.h in Headers */ = {isa = PBXBuildFile; fileRef = A8DF3FC8097FA0FB0052981B /* HTMLCollection.h */; settings = {ATTRIBUTES = (Private, ); }; };
38633857 A8DF3FD1097FA0FC0052981B /* HTMLCollection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8DF3FC9097FA0FB0052981B /* HTMLCollection.cpp */; };
3864  A8DF3FD2097FA0FC0052981B /* HTMLBaseFontElement.h in Headers */ = {isa = PBXBuildFile; fileRef = A8DF3FCA097FA0FB0052981B /* HTMLBaseFontElement.h */; };
3865  A8DF3FD3097FA0FC0052981B /* HTMLBaseFontElement.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8DF3FCB097FA0FB0052981B /* HTMLBaseFontElement.cpp */; };
38663858 A8DF3FD4097FA0FC0052981B /* HTMLNameCollection.h in Headers */ = {isa = PBXBuildFile; fileRef = A8DF3FCC097FA0FB0052981B /* HTMLNameCollection.h */; };
38673859 A8DF3FD5097FA0FC0052981B /* HTMLNameCollection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8DF3FCD097FA0FB0052981B /* HTMLNameCollection.cpp */; };
38683860 A8DF4AE80980C42C0052981B /* RenderTableCol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8DF4ADE0980C42C0052981B /* RenderTableCol.cpp */; };

62976289 854075830AD6CF1400620C57 /* DOMHTMLAppletElement.h in Copy Generated Headers */,
62986290 85ECBF080AA7628900544F0B /* DOMHTMLAreaElement.h in Copy Generated Headers */,
62996291 8575DF800AA612D600F5DBB5 /* DOMHTMLBaseElement.h in Copy Generated Headers */,
6300  85ECBF090AA7628900544F0B /* DOMHTMLBaseFontElement.h in Copy Generated Headers */,
63016292 8575DF810AA612D600F5DBB5 /* DOMHTMLBodyElement.h in Copy Generated Headers */,
63026293 85183B590AA6928600F19FA3 /* DOMHTMLBRElement.h in Copy Generated Headers */,
63036294 85BA4CE50AA686510088052D /* DOMHTMLButtonElement.h in Copy Generated Headers */,

71837174 1ADA140E0E1AE5D900023EE5 /* PluginMainThreadScheduler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PluginMainThreadScheduler.cpp; sourceTree = "<group>"; };
71847175 1ADA140F0E1AE5D900023EE5 /* PluginMainThreadScheduler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PluginMainThreadScheduler.h; sourceTree = "<group>"; };
71857176 1AE2A9F00A1CDA5700B42B25 /* HTMLAreaElement.idl */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = HTMLAreaElement.idl; sourceTree = "<group>"; };
7186  1AE2A9F10A1CDA5700B42B25 /* HTMLBaseFontElement.idl */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = HTMLBaseFontElement.idl; sourceTree = "<group>"; };
71877177 1AE2A9F20A1CDA5700B42B25 /* HTMLBodyElement.idl */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = HTMLBodyElement.idl; sourceTree = "<group>"; };
71887178 1AE2A9F30A1CDA5700B42B25 /* HTMLBRElement.idl */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = HTMLBRElement.idl; sourceTree = "<group>"; };
71897179 1AE2A9F40A1CDA5700B42B25 /* HTMLFieldSetElement.idl */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = HTMLFieldSetElement.idl; sourceTree = "<group>"; };

71927182 1AE2A9F90A1CDA5700B42B25 /* HTMLHRElement.idl */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = HTMLHRElement.idl; sourceTree = "<group>"; };
71937183 1AE2AA0A0A1CDAB300B42B25 /* JSHTMLAreaElement.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = JSHTMLAreaElement.cpp; sourceTree = "<group>"; };
71947184 1AE2AA0B0A1CDAB300B42B25 /* JSHTMLAreaElement.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = JSHTMLAreaElement.h; sourceTree = "<group>"; };
7195  1AE2AA0C0A1CDAB300B42B25 /* JSHTMLBaseFontElement.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = JSHTMLBaseFontElement.cpp; sourceTree = "<group>"; };
7196  1AE2AA0D0A1CDAB300B42B25 /* JSHTMLBaseFontElement.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = JSHTMLBaseFontElement.h; sourceTree = "<group>"; };
71977185 1AE2AA0E0A1CDAB300B42B25 /* JSHTMLBodyElement.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = JSHTMLBodyElement.cpp; sourceTree = "<group>"; };
71987186 1AE2AA0F0A1CDAB300B42B25 /* JSHTMLBodyElement.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = JSHTMLBodyElement.h; sourceTree = "<group>"; };
71997187 1AE2AA100A1CDAB300B42B25 /* JSHTMLBRElement.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = JSHTMLBRElement.cpp; sourceTree = "<group>"; };

92139201 85E7114C0AC5D5340053270F /* DOMHTMLAnchorElementInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMHTMLAnchorElementInternal.h; sourceTree = "<group>"; };
92149202 85E7114D0AC5D5340053270F /* DOMHTMLAreaElementInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMHTMLAreaElementInternal.h; sourceTree = "<group>"; };
92159203 85E7114E0AC5D5340053270F /* DOMHTMLBaseElementInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMHTMLBaseElementInternal.h; sourceTree = "<group>"; };
9216  85E7114F0AC5D5340053270F /* DOMHTMLBaseFontElementInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMHTMLBaseFontElementInternal.h; sourceTree = "<group>"; };
92179204 85E711500AC5D5340053270F /* DOMHTMLBodyElementInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMHTMLBodyElementInternal.h; sourceTree = "<group>"; };
92189205 85E711510AC5D5340053270F /* DOMHTMLBRElementInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMHTMLBRElementInternal.h; sourceTree = "<group>"; };
92199206 85E711520AC5D5340053270F /* DOMHTMLButtonElementInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMHTMLButtonElementInternal.h; sourceTree = "<group>"; };

92819268 85EC9AF90A71A2C600EEEAED /* Language.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Language.h; sourceTree = "<group>"; };
92829269 85ECBEDD0AA7626800544F0B /* DOMHTMLAreaElement.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMHTMLAreaElement.h; sourceTree = "<group>"; };
92839270 85ECBEDE0AA7626800544F0B /* DOMHTMLAreaElement.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMHTMLAreaElement.mm; sourceTree = "<group>"; };
9284  85ECBEDF0AA7626800544F0B /* DOMHTMLBaseFontElement.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMHTMLBaseFontElement.h; sourceTree = "<group>"; };
9285  85ECBEE00AA7626800544F0B /* DOMHTMLBaseFontElement.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMHTMLBaseFontElement.mm; sourceTree = "<group>"; };
92869271 85ECBEE10AA7626800544F0B /* DOMHTMLFontElement.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMHTMLFontElement.h; sourceTree = "<group>"; };
92879272 85ECBEE20AA7626800544F0B /* DOMHTMLFontElement.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMHTMLFontElement.mm; sourceTree = "<group>"; };
92889273 85ECBEE30AA7626800544F0B /* DOMHTMLHRElement.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMHTMLHRElement.h; sourceTree = "<group>"; };

1055810543 A8DF3FC7097FA0FB0052981B /* HTMLFormControlsCollection.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = HTMLFormControlsCollection.cpp; sourceTree = "<group>"; };
1055910544 A8DF3FC8097FA0FB0052981B /* HTMLCollection.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = HTMLCollection.h; sourceTree = "<group>"; };
1056010545 A8DF3FC9097FA0FB0052981B /* HTMLCollection.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = HTMLCollection.cpp; sourceTree = "<group>"; };
10561  A8DF3FCA097FA0FB0052981B /* HTMLBaseFontElement.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = HTMLBaseFontElement.h; sourceTree = "<group>"; };
10562  A8DF3FCB097FA0FB0052981B /* HTMLBaseFontElement.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = HTMLBaseFontElement.cpp; sourceTree = "<group>"; };
1056310546 A8DF3FCC097FA0FB0052981B /* HTMLNameCollection.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = HTMLNameCollection.h; sourceTree = "<group>"; };
1056410547 A8DF3FCD097FA0FB0052981B /* HTMLNameCollection.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = HTMLNameCollection.cpp; sourceTree = "<group>"; };
1056510548 A8DF4ADE0980C42C0052981B /* RenderTableCol.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = RenderTableCol.cpp; sourceTree = "<group>"; };

1568315666 85ECBEDE0AA7626800544F0B /* DOMHTMLAreaElement.mm */,
1568415667 859A9C3D0AA5E3BD00B694B2 /* DOMHTMLBaseElement.h */,
1568515668 859A9C3E0AA5E3BD00B694B2 /* DOMHTMLBaseElement.mm */,
15686  85ECBEDF0AA7626800544F0B /* DOMHTMLBaseFontElement.h */,
15687  85ECBEE00AA7626800544F0B /* DOMHTMLBaseFontElement.mm */,
1568815669 859A9C3F0AA5E3BD00B694B2 /* DOMHTMLBodyElement.h */,
1568915670 859A9C400AA5E3BD00B694B2 /* DOMHTMLBodyElement.mm */,
1569015671 85183B380AA6926100F19FA3 /* DOMHTMLBRElement.h */,

1585115832 855247CD0AD850B80012093B /* DOMHTMLAppletElementInternal.h */,
1585215833 85E7114D0AC5D5340053270F /* DOMHTMLAreaElementInternal.h */,
1585315834 85E7114E0AC5D5340053270F /* DOMHTMLBaseElementInternal.h */,
15854  85E7114F0AC5D5340053270F /* DOMHTMLBaseFontElementInternal.h */,
1585515835 85E711500AC5D5340053270F /* DOMHTMLBodyElementInternal.h */,
1585615836 85E711510AC5D5340053270F /* DOMHTMLBRElementInternal.h */,
1585715837 85E711520AC5D5340053270F /* DOMHTMLButtonElementInternal.h */,

1632116301 A871DC1E0A15205700B12A68 /* HTMLBaseElement.cpp */,
1632216302 A871DC130A15205700B12A68 /* HTMLBaseElement.h */,
1632316303 A80E7AAF0A19D1F1007FB8C5 /* HTMLBaseElement.idl */,
16324  A8DF3FCB097FA0FB0052981B /* HTMLBaseFontElement.cpp */,
16325  A8DF3FCA097FA0FB0052981B /* HTMLBaseFontElement.h */,
16326  1AE2A9F10A1CDA5700B42B25 /* HTMLBaseFontElement.idl */,
1632716304 9B24DE8C15194B9500C59C27 /* HTMLBDIElement.h */,
1632816305 A871DE1D0A152AC800B12A68 /* HTMLBodyElement.cpp */,
1632916306 A871DE200A152AC800B12A68 /* HTMLBodyElement.h */,

1723117208 E4B4237E0CBFB73C00AF2ECE /* JSHTMLAudioElement.h */,
1723217209 A80E7B080A19D606007FB8C5 /* JSHTMLBaseElement.cpp */,
1723317210 A80E7B070A19D606007FB8C5 /* JSHTMLBaseElement.h */,
17234  1AE2AA0C0A1CDAB300B42B25 /* JSHTMLBaseFontElement.cpp */,
17235  1AE2AA0D0A1CDAB300B42B25 /* JSHTMLBaseFontElement.h */,
1723617211 1AE2AA0E0A1CDAB300B42B25 /* JSHTMLBodyElement.cpp */,
1723717212 1AE2AA0F0A1CDAB300B42B25 /* JSHTMLBodyElement.h */,
1723817213 1AE2AA100A1CDAB300B42B25 /* JSHTMLBRElement.cpp */,

2208222057 85E7119C0AC5D5350053270F /* DOMHTMLAreaElementInternal.h in Headers */,
2208322058 859A9C470AA5E3BD00B694B2 /* DOMHTMLBaseElement.h in Headers */,
2208422059 85E7119D0AC5D5350053270F /* DOMHTMLBaseElementInternal.h in Headers */,
22085  85ECBEED0AA7626900544F0B /* DOMHTMLBaseFontElement.h in Headers */,
22086  85E7119E0AC5D5350053270F /* DOMHTMLBaseFontElementInternal.h in Headers */,
2208722060 859A9C490AA5E3BD00B694B2 /* DOMHTMLBodyElement.h in Headers */,
2208822061 85E7119F0AC5D5350053270F /* DOMHTMLBodyElementInternal.h in Headers */,
2208922062 85183B420AA6926100F19FA3 /* DOMHTMLBRElement.h in Headers */,

2258422557 E44613A20CD6331000FADA75 /* HTMLAudioElement.h in Headers */,
2258522558 078E091E17D14D1C00420AA1 /* RTCDataChannel.h in Headers */,
2258622559 A871DC1F0A15205700B12A68 /* HTMLBaseElement.h in Headers */,
22587  A8DF3FD2097FA0FC0052981B /* HTMLBaseFontElement.h in Headers */,
2258822560 9B24DE8E15194B9500C59C27 /* HTMLBDIElement.h in Headers */,
2258922561 A871DE2C0A152AC800B12A68 /* HTMLBodyElement.h in Headers */,
2259022562 A8CFF7AA0A156978000A4234 /* HTMLBRElement.h in Headers */,

2299722969 1AE2AA1F0A1CDAB400B42B25 /* JSHTMLAreaElement.h in Headers */,
2299822970 E44614380CD689C500FADA75 /* JSHTMLAudioElement.h in Headers */,
2299922971 A80E7B110A19D606007FB8C5 /* JSHTMLBaseElement.h in Headers */,
23000  1AE2AA210A1CDAB400B42B25 /* JSHTMLBaseFontElement.h in Headers */,
2300122972 1AE2AA230A1CDAB400B42B25 /* JSHTMLBodyElement.h in Headers */,
2300222973 1AE2AA250A1CDAB400B42B25 /* JSHTMLBRElement.h in Headers */,
2300322974 A80E7E9F0A1A83E3007FB8C5 /* JSHTMLButtonElement.h in Headers */,

2550025471 85ECBEEC0AA7626900544F0B /* DOMHTMLAreaElement.mm in Sources */,
2550125472 859A9C480AA5E3BD00B694B2 /* DOMHTMLBaseElement.mm in Sources */,
2550225473 078E090417D14CEE00420AA1 /* NavigatorMediaStream.cpp in Sources */,
25503  85ECBEEE0AA7626900544F0B /* DOMHTMLBaseFontElement.mm in Sources */,
2550425474 859A9C4A0AA5E3BD00B694B2 /* DOMHTMLBodyElement.mm in Sources */,
2550525475 85183B430AA6926100F19FA3 /* DOMHTMLBRElement.mm in Sources */,
2550625476 85BA4CDE0AA6861B0088052D /* DOMHTMLButtonElement.mm in Sources */,

2583925809 A8EA7D2F0A19385500A8EF5F /* HTMLAreaElement.cpp in Sources */,
2584025810 E44613A10CD6331000FADA75 /* HTMLAudioElement.cpp in Sources */,
2584125811 A871DC2A0A15205700B12A68 /* HTMLBaseElement.cpp in Sources */,
25842  A8DF3FD3097FA0FC0052981B /* HTMLBaseFontElement.cpp in Sources */,
2584325812 07969DBD17D14151007FF842 /* JSRTCSessionDescriptionCallback.cpp in Sources */,
2584425813 A871DE290A152AC800B12A68 /* HTMLBodyElement.cpp in Sources */,
2584525814 A8CFF7A80A156978000A4234 /* HTMLBRElement.cpp in Sources */,

2623026199 1AE2AA1E0A1CDAB400B42B25 /* JSHTMLAreaElement.cpp in Sources */,
2623126200 E44614370CD689C400FADA75 /* JSHTMLAudioElement.cpp in Sources */,
2623226201 A80E7B120A19D606007FB8C5 /* JSHTMLBaseElement.cpp in Sources */,
26233  1AE2AA200A1CDAB400B42B25 /* JSHTMLBaseFontElement.cpp in Sources */,
2623426202 1AE2AA220A1CDAB400B42B25 /* JSHTMLBodyElement.cpp in Sources */,
2623526203 1AE2AA240A1CDAB400B42B25 /* JSHTMLBRElement.cpp in Sources */,
2623626204 A80E7EA00A1A83E3007FB8C5 /* JSHTMLButtonElement.cpp in Sources */,

Source/WebCore/bindings/gobject/GNUmakefile.am

@@webkitgtk_gdom_built_sources += \
8989 DerivedSources/webkitdom/WebKitDOMHTMLAreaElementPrivate.h \
9090 DerivedSources/webkitdom/WebKitDOMHTMLBaseElement.cpp \
9191 DerivedSources/webkitdom/WebKitDOMHTMLBaseElementPrivate.h \
92  DerivedSources/webkitdom/WebKitDOMHTMLBaseFontElement.cpp \
93  DerivedSources/webkitdom/WebKitDOMHTMLBaseFontElementPrivate.h \
9492 DerivedSources/webkitdom/WebKitDOMHTMLBodyElement.cpp \
9593 DerivedSources/webkitdom/WebKitDOMHTMLBodyElementPrivate.h \
9694 DerivedSources/webkitdom/WebKitDOMHTMLBRElement.cpp \

@@webkitgtk_gdom_built_h_api += \
330328 DerivedSources/webkitdom/WebKitDOMHTMLAppletElement.h \
331329 DerivedSources/webkitdom/WebKitDOMHTMLAreaElement.h \
332330 DerivedSources/webkitdom/WebKitDOMHTMLBaseElement.h \
333  DerivedSources/webkitdom/WebKitDOMHTMLBaseFontElement.h \
334331 DerivedSources/webkitdom/WebKitDOMHTMLBodyElement.h \
335332 DerivedSources/webkitdom/WebKitDOMHTMLBRElement.h \
336333 DerivedSources/webkitdom/WebKitDOMHTMLButtonElement.h \

Source/WebCore/bindings/gobject/WebKitDOMHTMLPrivate.cpp

3737#include "HTMLAudioElement.h"
3838#include "HTMLBRElement.h"
3939#include "HTMLBaseElement.h"
40 #include "HTMLBaseFontElement.h"
4140#include "HTMLBodyElement.h"
4241#include "HTMLButtonElement.h"
4342#include "HTMLCanvasElement.h"

9594#include "WebKitDOMHTMLAreaElementPrivate.h"
9695#include "WebKitDOMHTMLBRElementPrivate.h"
9796#include "WebKitDOMHTMLBaseElementPrivate.h"
98 #include "WebKitDOMHTMLBaseFontElementPrivate.h"
9997#include "WebKitDOMHTMLBodyElementPrivate.h"
10098#include "WebKitDOMHTMLButtonElementPrivate.h"
10199#include "WebKitDOMHTMLCanvasElementPrivate.h"

@@using namespace WebCore::HTMLNames;
173171 macro(applet, Applet) \
174172 macro(area, Area) \
175173 macro(base, Base) \
176  macro(basefont, BaseFont) \
177174 macro(blockquote, Quote) \
178175 macro(body, Body) \
179176 macro(br, BR) \

Source/WebCore/bindings/objc/DOM.mm

@@static void createElementClassMap()
8484 addElementClass(HTMLNames::appletTag, [DOMHTMLAppletElement class]);
8585 addElementClass(HTMLNames::areaTag, [DOMHTMLAreaElement class]);
8686 addElementClass(HTMLNames::baseTag, [DOMHTMLBaseElement class]);
87  addElementClass(HTMLNames::basefontTag, [DOMHTMLBaseFontElement class]);
8887 addElementClass(HTMLNames::bodyTag, [DOMHTMLBodyElement class]);
8988 addElementClass(HTMLNames::brTag, [DOMHTMLBRElement class]);
9089 addElementClass(HTMLNames::buttonTag, [DOMHTMLButtonElement class]);

Source/WebCore/bindings/objc/DOMHTML.h

3434#import <WebCore/DOMHTMLAreaElement.h>
3535#import <WebCore/DOMHTMLBRElement.h>
3636#import <WebCore/DOMHTMLBaseElement.h>
37 #import <WebCore/DOMHTMLBaseFontElement.h>
3837#import <WebCore/DOMHTMLBodyElement.h>
3938#import <WebCore/DOMHTMLButtonElement.h>
4039#import <WebCore/DOMHTMLCollection.h>

Source/WebCore/bindings/objc/PublicDOMInterfaces.h

390390@property(copy) NSString *target;
391391@end
392392
393 @interface DOMHTMLBaseFontElement : DOMHTMLElement WEBKIT_VERSION_1_3
394 @property(copy) NSString *color;
395 @property(copy) NSString *face;
396 @property(copy) NSString *size;
397 @end
398 
399393@interface DOMHTMLBodyElement : DOMHTMLElement WEBKIT_VERSION_1_3
400394@property(copy) NSString *aLink;
401395@property(copy) NSString *background;

Source/WebCore/html/HTMLBaseFontElement.cpp

1 /*
2  * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3  * (C) 1999 Antti Koivisto (koivisto@kde.org)
4  * Copyright (C) 2003, 2004, 2005, 2006, 2009, 2010 Apple Inc. All rights reserved.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public License
17  * along with this library; see the file COPYING.LIB. If not, write to
18  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  *
21  */
22 
23 #include "config.h"
24 #include "HTMLBaseFontElement.h"
25 
26 #include "HTMLNames.h"
27 
28 namespace WebCore {
29 
30 using namespace HTMLNames;
31 
32 inline HTMLBaseFontElement::HTMLBaseFontElement(const QualifiedName& tagName, Document& document)
33  : HTMLElement(tagName, document)
34 {
35  ASSERT(hasTagName(basefontTag));
36 }
37 
38 PassRefPtr<HTMLBaseFontElement> HTMLBaseFontElement::create(const QualifiedName& tagName, Document& document)
39 {
40  return adoptRef(new HTMLBaseFontElement(tagName, document));
41 }
42 
43 }

Source/WebCore/html/HTMLBaseFontElement.h

1 /*
2  * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3  * (C) 1999 Antti Koivisto (koivisto@kde.org)
4  * Copyright (C) 2003, 2004, 2005, 2006, 2009, 2010 Apple Inc. All rights reserved.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public License
17  * along with this library; see the file COPYING.LIB. If not, write to
18  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  *
21  */
22 
23 #ifndef HTMLBaseFontElement_h
24 #define HTMLBaseFontElement_h
25 
26 #include "HTMLElement.h"
27 
28 namespace WebCore {
29 
30 class HTMLBaseFontElement FINAL : public HTMLElement {
31 public:
32  static PassRefPtr<HTMLBaseFontElement> create(const QualifiedName&, Document&);
33 
34 private:
35  HTMLBaseFontElement(const QualifiedName&, Document&);
36 };
37 
38 } // namespace
39 
40 #endif

Source/WebCore/html/HTMLBaseFontElement.idl

1 /*
2  * Copyright (C) 2006, 2009, 2010 Apple Inc. All rights reserved.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public License
15  * along with this library; see the file COPYING.LIB. If not, write to
16  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19 
20 interface HTMLBaseFontElement : HTMLElement {
21  [Reflect] attribute DOMString color;
22  [Reflect] attribute DOMString face;
23 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C
24  [Reflect] attribute DOMString size; // this changed to a long, but our existing API is a string
25 #else
26  [Reflect] attribute long size;
27 #endif
28 };

Source/WebCore/html/HTMLElementsAllInOne.cpp

4040#include "HTMLAudioElement.cpp"
4141#include "HTMLBRElement.cpp"
4242#include "HTMLBaseElement.cpp"
43 #include "HTMLBaseFontElement.cpp"
4443#include "HTMLBodyElement.cpp"
4544#include "HTMLButtonElement.cpp"
4645#include "HTMLCanvasElement.cpp"

Source/WebCore/html/HTMLTagNames.in

@@aside interfaceName=HTMLElement
1414audio wrapperOnlyIfMediaIsAvailable, conditional=VIDEO, constructorNeedsCreatedByParser, generateTypeHelpers
1515b interfaceName=HTMLElement
1616base generateTypeHelpers
17 basefont interfaceName=HTMLBaseFontElement
 17basefont interfaceName=HTMLUnknownElement
1818bdi interfaceName=HTMLBDIElement, JSInterfaceName=HTMLElement
1919bdo interfaceName=HTMLElement
2020bgsound interfaceName=HTMLElement

Source/WebKit/mac/MigrateHeaders.make

@@all : \
8585 $(PUBLIC_HEADERS_DIR)/DOMHTMLAreaElement.h \
8686 $(PUBLIC_HEADERS_DIR)/DOMHTMLBRElement.h \
8787 $(PUBLIC_HEADERS_DIR)/DOMHTMLBaseElement.h \
88  $(PUBLIC_HEADERS_DIR)/DOMHTMLBaseFontElement.h \
8988 $(PUBLIC_HEADERS_DIR)/DOMHTMLBodyElement.h \
9089 $(PUBLIC_HEADERS_DIR)/DOMHTMLButtonElement.h \
9190 $(PUBLIC_HEADERS_DIR)/DOMHTMLCollection.h \

Tools/Scripts/webkitperl/filter-build-webkit_unittest/shouldIgnoreLine_unittests.pl

@@Creating hashtable for JavaScriptCore/runtime/ArrayConstructor.cpp
5656Wrote output to /Volumes/Data/Build/Release/DerivedSources/WebCore/ExportFileGenerator.cpp
5757/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: file: /Volumes/Data/Build/ANGLE.build/Release/ANGLE.build/Objects-normal/i386/debug.o has no symbols
5858Showing first 200 notices only
59 printf "WebCore/Modules/encryptedmedia/MediaKeyMessageEvent.idl\nWebCore/Modules/encryptedmedia/MediaKeyNeededEvent.idl\nWebCore/Modules/encryptedmedia/MediaKeySession.idl\nWebCore/Modules/encryptedmedia/MediaKeys.idl\nWebCore/Modules/filesystem/DOMFileSystem.idl\nWebCore/Modules/filesystem/DOMFileSystemSync.idl\nWebCore/Modules/filesystem/DOMWindowFileSystem.idl\nWebCore/Modules/filesystem/DirectoryEntry.idl\nWebCore/Modules/filesystem/DirectoryEntrySync.idl\nWebCore/Modules/filesystem/DirectoryReader.idl\nWebCore/Modules/filesystem/DirectoryReaderSync.idl\nWebCore/Modules/filesystem/EntriesCallback.idl\nWebCore/Modules/filesystem/Entry.idl\nWebCore/Modules/filesystem/EntryArray.idl\nWebCore/Modules/filesystem/EntryArraySync.idl\nWebCore/Modules/filesystem/EntryCallback.idl\nWebCore/Modules/filesystem/EntrySync.idl\nWebCore/Modules/filesystem/ErrorCallback.idl\nWebCore/Modules/filesystem/FileCallback.idl\nWebCore/Modules/filesystem/FileEntry.idl\nWebCore/Modules/filesystem/FileEntrySync.idl\nWebCore/Modules/filesystem/FileSystemCallback.idl\nWebCore/Modules/filesystem/FileWriter.idl\nWebCore/Modules/filesystem/FileWriterCallback.idl\nWebCore/Modules/filesystem/FileWriterSync.idl\nWebCore/Modules/filesystem/Metadata.idl\nWebCore/Modules/filesystem/MetadataCallback.idl\nWebCore/Modules/filesystem/WorkerContextFileSystem.idl\nWebCore/Modules/geolocation/Coordinates.idl\nWebCore/Modules/geolocation/Geolocation.idl\nWebCore/Modules/geolocation/Geoposition.idl\nWebCore/Modules/geolocation/NavigatorGeolocation.idl\nWebCore/Modules/geolocation/PositionCallback.idl\nWebCore/Modules/geolocation/PositionError.idl\nWebCore/Modules/geolocation/PositionErrorCallback.idl\nWebCore/Modules/indexeddb/DOMWindowIndexedDatabase.idl\nWebCore/Modules/indexeddb/IDBAny.idl\nWebCore/Modules/indexeddb/IDBCursor.idl\nWebCore/Modules/indexeddb/IDBDatabase.idl\nWebCore/Modules/indexeddb/IDBFactory.idl\nWebCore/Modules/indexeddb/IDBIndex.idl\nWebCore/Modules/indexeddb/IDBKeyRange.idl\nWebCore/Modules/indexeddb/IDBObjectStore.idl\nWebCore/Modules/indexeddb/IDBRequest.idl\nWebCore/Modules/indexeddb/IDBTransaction.idl\nWebCore/Modules/indexeddb/IDBVersionChangeEvent.idl\nWebCore/Modules/indexeddb/WorkerContextIndexedDatabase.idl\nWebCore/Modules/mediasource/MediaSource.idl\nWebCore/Modules/mediasource/SourceBuffer.idl\nWebCore/Modules/mediasource/SourceBufferList.idl\nWebCore/Modules/notifications/DOMWindowNotifications.idl\nWebCore/Modules/notifications/Notification.idl\nWebCore/Modules/notifications/NotificationCenter.idl\nWebCore/Modules/notifications/NotificationPermissionCallback.idl\nWebCore/Modules/notifications/WorkerContextNotifications.idl\nWebCore/Modules/quota/DOMWindowQuota.idl\nWebCore/Modules/quota/NavigatorStorageQuota.idl\nWebCore/Modules/quota/StorageInfo.idl\nWebCore/Modules/quota/StorageErrorCallback.idl\nWebCore/Modules/quota/StorageQuota.idl\nWebCore/Modules/quota/StorageQuotaCallback.idl\nWebCore/Modules/quota/StorageUsageCallback.idl\nWebCore/Modules/quota/WorkerNavigatorStorageQuota.idl\nWebCore/Modules/speech/DOMWindowSpeechSynthesis.idl\nWebCore/Modules/speech/SpeechSynthesis.idl\nWebCore/Modules/speech/SpeechSynthesisEvent.idl\nWebCore/Modules/speech/SpeechSynthesisUtterance.idl\nWebCore/Modules/speech/SpeechSynthesisVoice.idl\nWebCore/Modules/webaudio/AudioBuffer.idl\nWebCore/Modules/webaudio/AudioBufferCallback.idl\nWebCore/Modules/webaudio/AudioBufferSourceNode.idl\nWebCore/Modules/webaudio/ChannelMergerNode.idl\nWebCore/Modules/webaudio/ChannelSplitterNode.idl\nWebCore/Modules/webaudio/AudioContext.idl\nWebCore/Modules/webaudio/AudioDestinationNode.idl\nWebCore/Modules/webaudio/GainNode.idl\nWebCore/Modules/webaudio/AudioListener.idl\nWebCore/Modules/webaudio/AudioNode.idl\nWebCore/Modules/webaudio/PannerNode.idl\nWebCore/Modules/webaudio/AudioParam.idl\nWebCore/Modules/webaudio/AudioProcessingEvent.idl\nWebCore/Modules/webaudio/BiquadFilterNode.idl\nWebCore/Modules/webaudio/ConvolverNode.idl\nWebCore/Modules/webaudio/DOMWindowWebAudio.idl\nWebCore/Modules/webaudio/DelayNode.idl\nWebCore/Modules/webaudio/DynamicsCompressorNode.idl\nWebCore/Modules/webaudio/ScriptProcessorNode.idl\nWebCore/Modules/webaudio/MediaElementAudioSourceNode.idl\nWebCore/Modules/webaudio/MediaStreamAudioSourceNode.idl\nWebCore/Modules/webaudio/OscillatorNode.idl\nWebCore/Modules/webaudio/OfflineAudioContext.idl\nWebCore/Modules/webaudio/OfflineAudioCompletionEvent.idl\nWebCore/Modules/webaudio/AnalyserNode.idl\nWebCore/Modules/webaudio/WaveShaperNode.idl\nWebCore/Modules/webaudio/WaveTable.idl\nWebCore/Modules/webdatabase/DOMWindowWebDatabase.idl\nWebCore/Modules/webdatabase/Database.idl\nWebCore/Modules/webdatabase/DatabaseCallback.idl\nWebCore/Modules/webdatabase/DatabaseSync.idl\nWebCore/Modules/webdatabase/SQLError.idl\nWebCore/Modules/webdatabase/SQLException.idl\nWebCore/Modules/webdatabase/SQLResultSet.idl\nWebCore/Modules/webdatabase/SQLResultSetRowList.idl\nWebCore/Modules/webdatabase/SQLStatementCallback.idl\nWebCore/Modules/webdatabase/SQLStatementErrorCallback.idl\nWebCore/Modules/webdatabase/SQLTransaction.idl\nWebCore/Modules/webdatabase/SQLTransactionCallback.idl\nWebCore/Modules/webdatabase/SQLTransactionErrorCallback.idl\nWebCore/Modules/webdatabase/SQLTransactionSync.idl\nWebCore/Modules/webdatabase/SQLTransactionSyncCallback.idl\nWebCore/Modules/webdatabase/WorkerContextWebDatabase.idl\nWebCore/Modules/websockets/CloseEvent.idl\nWebCore/Modules/websockets/DOMWindowWebSocket.idl\nWebCore/Modules/websockets/WebSocket.idl\nWebCore/Modules/websockets/WorkerContextWebSocket.idl\nWebCore/css/CSSCharsetRule.idl\nWebCore/css/CSSFontFaceLoadEvent.idl\nWebCore/css/CSSFontFaceRule.idl\nWebCore/css/CSSHostRule.idl\nWebCore/css/CSSImportRule.idl\nWebCore/css/CSSMediaRule.idl\nWebCore/css/CSSPageRule.idl\nWebCore/css/CSSPrimitiveValue.idl\nWebCore/css/CSSRule.idl\nWebCore/css/CSSRuleList.idl\nWebCore/css/CSSStyleDeclaration.idl\nWebCore/css/CSSStyleRule.idl\nWebCore/css/CSSStyleSheet.idl\nWebCore/css/CSSSupportsRule.idl\nWebCore/css/CSSUnknownRule.idl\nWebCore/css/CSSValue.idl\nWebCore/css/CSSValueList.idl\nWebCore/css/Counter.idl\nWebCore/css/DOMWindowCSS.idl\nWebCore/css/FontLoader.idl\nWebCore/css/MediaList.idl\nWebCore/css/MediaQueryList.idl\nWebCore/css/MediaQueryListListener.idl\nWebCore/css/RGBColor.idl\nWebCore/css/Rect.idl\nWebCore/css/StyleMedia.idl\nWebCore/css/StyleSheet.idl\nWebCore/css/StyleSheetList.idl\nWebCore/css/WebKitCSSFilterValue.idl\nWebCore/css/WebKitCSSFilterRule.idl\nWebCore/css/WebKitCSSKeyframeRule.idl\nWebCore/css/WebKitCSSKeyframesRule.idl\nWebCore/css/WebKitCSSMatrix.idl\nWebCore/css/WebKitCSSMixFunctionValue.idl\nWebCore/css/WebKitCSSRegionRule.idl\nWebCore/css/WebKitCSSTransformValue.idl\nWebCore/css/WebKitCSSViewportRule.idl\nWebCore/dom/Attr.idl\nWebCore/dom/BeforeLoadEvent.idl\nWebCore/dom/CDATASection.idl\nWebCore/dom/CharacterData.idl\nWebCore/dom/ClientRect.idl\nWebCore/dom/ClientRectList.idl\nWebCore/dom/Clipboard.idl\nWebCore/dom/Comment.idl\nWebCore/dom/CompositionEvent.idl\nWebCore/dom/CustomElementConstructor.idl\nWebCore/dom/CustomEvent.idl\nWebCore/dom/DOMCoreException.idl\nWebCore/dom/DOMError.idl\nWebCore/dom/DOMImplementation.idl\nWebCore/dom/DOMStringList.idl\nWebCore/dom/DOMStringMap.idl\nWebCore/dom/DataTransferItem.idl\nWebCore/dom/DataTransferItemList.idl\nWebCore/dom/DeviceMotionEvent.idl\nWebCore/dom/DeviceOrientationEvent.idl\nWebCore/dom/Document.idl\nWebCore/dom/DocumentFragment.idl\nWebCore/dom/DocumentType.idl\nWebCore/dom/Element.idl\nWebCore/dom/Entity.idl\nWebCore/dom/EntityReference.idl\nWebCore/dom/ErrorEvent.idl\nWebCore/dom/Event.idl\nWebCore/dom/EventException.idl\nWebCore/dom/EventListener.idl\nWebCore/dom/EventTarget.idl\nWebCore/dom/FocusEvent.idl\nWebCore/dom/HashChangeEvent.idl\nWebCore/dom/KeyboardEvent.idl\nWebCore/dom/MessageChannel.idl\nWebCore/dom/MessageEvent.idl\nWebCore/dom/MessagePort.idl\nWebCore/dom/MouseEvent.idl\nWebCore/dom/MutationEvent.idl\nWebCore/dom/MutationObserver.idl\nWebCore/dom/MutationRecord.idl\nWebCore/dom/DOMNamedFlowCollection.idl\nWebCore/dom/NamedNodeMap.idl\nWebCore/dom/Node.idl\nWebCore/dom/NodeFilter.idl\nWebCore/dom/NodeIterator.idl\nWebCore/dom/NodeList.idl\nWebCore/dom/Notation.idl\nWebCore/dom/OverflowEvent.idl\nWebCore/dom/PageTransitionEvent.idl\nWebCore/dom/PopStateEvent.idl\nWebCore/dom/ProcessingInstruction.idl\nWebCore/dom/ProgressEvent.idl\nWebCore/dom/ProgressEvent.idl\nWebCore/dom/PropertyNodeList.idl\nWebCore/dom/Range.idl\nWebCore/dom/RangeException.idl\nWebCore/dom/RequestAnimationFrameCallback.idl\nWebCore/dom/ShadowRoot.idl\nWebCore/dom/StringCallback.idl\nWebCore/dom/Text.idl\nWebCore/dom/TextEvent.idl\nWebCore/dom/Touch.idl\nWebCore/dom/TouchEvent.idl\nWebCore/dom/TouchList.idl\nWebCore/dom/TransitionEvent.idl\nWebCore/dom/TreeWalker.idl\nWebCore/dom/UIEvent.idl\nWebCore/dom/WebKitAnimationEvent.idl\nWebCore/dom/WebKitNamedFlow.idl\nWebCore/dom/WebKitTransitionEvent.idl\nWebCore/dom/WheelEvent.idl\nWebCore/fileapi/Blob.idl\nWebCore/fileapi/File.idl\nWebCore/fileapi/FileError.idl\nWebCore/fileapi/FileException.idl\nWebCore/fileapi/FileList.idl\nWebCore/fileapi/FileReader.idl\nWebCore/fileapi/FileReaderSync.idl\nWebCore/html/DOMFormData.idl\nWebCore/html/DOMSettableTokenList.idl\nWebCore/html/DOMTokenList.idl\nWebCore/html/DOMURL.idl\nWebCore/html/HTMLAllCollection.idl\nWebCore/html/HTMLAnchorElement.idl\nWebCore/html/HTMLAppletElement.idl\nWebCore/html/HTMLAreaElement.idl\nWebCore/html/HTMLAudioElement.idl\nWebCore/html/HTMLBRElement.idl\nWebCore/html/HTMLBaseElement.idl\nWebCore/html/HTMLBaseFontElement.idl\nWebCore/html/HTMLBodyElement.idl\nWebCore/html/HTMLButtonElement.idl\nWebCore/html/HTMLCanvasElement.idl\nWebCore/html/HTMLCollection.idl\nWebCore/html/HTMLDListElement.idl\nWebCore/html/HTMLDataListElement.idl\nWebCore/html/HTMLDetailsElement.idl\nWebCore/html/HTMLDialogElement.idl\nWebCore/html/HTMLDirectoryElement.idl\nWebCore/html/HTMLDivElement.idl\nWebCore/html/HTMLDocument.idl\nWebCore/html/HTMLElement.idl\nWebCore/html/HTMLEmbedElement.idl\nWebCore/html/HTMLFieldSetElement.idl\nWebCore/html/HTMLFontElement.idl\nWebCore/html/HTMLFormControlsCollection.idl\nWebCore/html/HTMLFormElement.idl\nWebCore/html/HTMLFrameElement.idl\nWebCore/html/HTMLFrameSetElement.idl\nWebCore/html/HTMLHRElement.idl\nWebCore/html/HTMLHeadElement.idl\nWebCore/html/HTMLHeadingElement.idl\nWebCore/html/HTMLHtmlElement.idl\nWebCore/html/HTMLIFrameElement.idl\nWebCore/html/HTMLImageElement.idl\nWebCore/html/HTMLInputElement.idl\nWebCore/html/HTMLKeygenElement.idl\nWebCore/html/HTMLLIElement.idl\nWebCore/html/HTMLLabelElement.idl\nWebCore/html/HTMLLegendElement.idl\nWebCore/html/HTMLLinkElement.idl\nWebCore/html/HTMLMapElement.idl\nWebCore/html/HTMLMarqueeElement.idl\nWebCore/html/HTMLMediaElement.idl\nWebCore/html/HTMLMenuElement.idl\nWebCore/html/HTMLMetaElement.idl\nWebCore/html/HTMLMeterElement.idl\nWebCore/html/HTMLModElement.idl\nWebCore/html/HTMLOListElement.idl\nWebCore/html/HTMLObjectElement.idl\nWebCore/html/HTMLOptGroupElement.idl\nWebCore/html/HTMLOptionElement.idl\nWebCore/html/HTMLOptionsCollection.idl\nWebCore/html/HTMLOutputElement.idl\nWebCore/html/HTMLParagraphElement.idl\nWebCore/html/HTMLParamElement.idl\nWebCore/html/HTMLPreElement.idl\nWebCore/html/HTMLProgressElement.idl\nWebCore/html/HTMLPropertiesCollection.idl\nWebCore/html/HTMLQuoteElement.idl\nWebCore/html/HTMLScriptElement.idl\nWebCore/html/HTMLSelectElement.idl\nWebCore/html/HTMLSourceElement.idl\nWebCore/html/HTMLSpanElement.idl\nWebCore/html/HTMLStyleElement.idl\nWebCore/html/HTMLTableCaptionElement.idl\nWebCore/html/HTMLTableCellElement.idl\nWebCore/html/HTMLTableColElement.idl\nWebCore/html/HTMLTableElement.idl\nWebCore/html/HTMLTableRowElement.idl\nWebCore/html/HTMLTableSectionElement.idl\nWebCore/html/HTMLTemplateElement.idl\nWebCore/html/HTMLTextAreaElement.idl\nWebCore/html/HTMLTitleElement.idl\nWebCore/html/HTMLTrackElement.idl\nWebCore/html/HTMLUListElement.idl\nWebCore/html/HTMLUnknownElement.idl\nWebCore/html/HTMLVideoElement.idl\nWebCore/html/ImageData.idl\nWebCore/html/MediaController.idl\nWebCore/html/MediaError.idl\nWebCore/html/MediaKeyError.idl\nWebCore/html/MediaKeyEvent.idl\nWebCore/html/MicroDataItemValue.idl\nWebCore/html/RadioNodeList.idl\nWebCore/html/TextMetrics.idl\nWebCore/html/TimeRanges.idl\nWebCore/html/ValidityState.idl\nWebCore/html/VoidCallback.idl\nWebCore/html/canvas/ArrayBuffer.idl\nWebCore/html/canvas/ArrayBufferView.idl\nWebCore/html/canvas/CanvasGradient.idl\nWebCore/html/canvas/CanvasPattern.idl\nWebCore/html/canvas/CanvasProxy.idl\nWebCore/html/canvas/CanvasRenderingContext.idl\nWebCore/html/canvas/CanvasRenderingContext2D.idl\nWebCore/html/canvas/DataView.idl\nWebCore/html/canvas/DOMPath.idl\nWebCore/html/canvas/EXTDrawBuffers.idl\nWebCore/html/canvas/EXTTextureFilterAnisotropic.idl\nWebCore/html/canvas/Float32Array.idl\nWebCore/html/canvas/Float64Array.idl\nWebCore/html/canvas/Int16Array.idl\nWebCore/html/canvas/Int32Array.idl\nWebCore/html/canvas/Int8Array.idl\nWebCore/html/canvas/OESElementIndexUint.idl\nWebCore/html/canvas/OESStandardDerivatives.idl\nWebCore/html/canvas/OESTextureFloat.idl\nWebCore/html/canvas/OESTextureHalfFloat.idl\nWebCore/html/canvas/OESVertexArrayObject.idl\nWebCore/html/canvas/Uint16Array.idl\nWebCore/html/canvas/Uint32Array.idl\nWebCore/html/canvas/Uint8Array.idl\nWebCore/html/canvas/Uint8ClampedArray.idl\nWebCore/html/canvas/WebGLActiveInfo.idl\nWebCore/html/canvas/WebGLBuffer.idl\nWebCore/html/canvas/WebGLCompressedTextureATC.idl\nWebCore/html/canvas/WebGLCompressedTexturePVRTC.idl\nWebCore/html/canvas/WebGLCompressedTextureS3TC.idl\nWebCore/html/canvas/WebGLContextAttributes.idl\nWebCore/html/canvas/WebGLContextEvent.idl\nWebCore/html/canvas/WebGLDepthTexture.idl\nWebCore/html/canvas/WebGLFramebuffer.idl\nWebCore/html/canvas/WebGLLoseContext.idl\nWebCore/html/canvas/WebGLProgram.idl\nWebCore/html/canvas/WebGLRenderbuffer.idl\nWebCore/html/canvas/WebGLRenderingContext.idl\nWebCore/html/canvas/WebGLShader.idl\nWebCore/html/canvas/WebGLShaderPrecisionFormat.idl\nWebCore/html/canvas/WebGLTexture.idl\nWebCore/html/canvas/WebGLUniformLocation.idl\nWebCore/html/canvas/WebGLVertexArrayObjectOES.idl\nWebCore/html/shadow/HTMLContentElement.idl\nWebCore/html/shadow/HTMLShadowElement.idl\nWebCore/html/track/TextTrack.idl\nWebCore/html/track/TextTrackCue.idl\nWebCore/html/track/TextTrackCueList.idl\nWebCore/html/track/TextTrackList.idl\nWebCore/html/track/TrackEvent.idl\nWebCore/inspector/InjectedScriptHost.idl\nWebCore/inspector/InspectorFrontendHost.idl\nWebCore/inspector/ScriptProfile.idl\nWebCore/inspector/ScriptProfileNode.idl\nWebCore/loader/appcache/DOMApplicationCache.idl\nWebCore/page/AbstractView.idl\nWebCore/page/BarInfo.idl\nWebCore/page/Console.idl\nWebCore/page/Crypto.idl\nWebCore/page/DOMSecurityPolicy.idl\nWebCore/page/DOMSelection.idl\nWebCore/page/DOMWindow.idl\nWebCore/page/EventSource.idl\nWebCore/page/History.idl\nWebCore/page/Location.idl\nWebCore/page/Navigator.idl\nWebCore/page/Performance.idl\nWebCore/page/PerformanceNavigation.idl\nWebCore/page/PerformanceTiming.idl\nWebCore/page/Screen.idl\nWebCore/page/SpeechInputEvent.idl\nWebCore/page/SpeechInputResult.idl\nWebCore/page/SpeechInputResultList.idl\nWebCore/page/WebKitPoint.idl\nWebCore/page/WorkerNavigator.idl\nWebCore/plugins/DOMMimeType.idl\nWebCore/plugins/DOMMimeTypeArray.idl\nWebCore/plugins/DOMPlugin.idl\nWebCore/plugins/DOMPluginArray.idl\nWebCore/storage/Storage.idl\nWebCore/storage/StorageEvent.idl\nWebCore/svg/ElementTimeControl.idl\nWebCore/svg/SVGAElement.idl\nWebCore/svg/SVGAltGlyphDefElement.idl\nWebCore/svg/SVGAltGlyphElement.idl\nWebCore/svg/SVGAltGlyphItemElement.idl\nWebCore/svg/SVGAngle.idl\nWebCore/svg/SVGAnimateColorElement.idl\nWebCore/svg/SVGAnimateElement.idl\nWebCore/svg/SVGAnimateMotionElement.idl\nWebCore/svg/SVGAnimateTransformElement.idl\nWebCore/svg/SVGAnimatedAngle.idl\nWebCore/svg/SVGAnimatedBoolean.idl\nWebCore/svg/SVGAnimatedEnumeration.idl\nWebCore/svg/SVGAnimatedInteger.idl\nWebCore/svg/SVGAnimatedLength.idl\nWebCore/svg/SVGAnimatedLengthList.idl\nWebCore/svg/SVGAnimatedNumber.idl\nWebCore/svg/SVGAnimatedNumberList.idl\nWebCore/svg/SVGAnimatedPreserveAspectRatio.idl\nWebCore/svg/SVGAnimatedRect.idl\nWebCore/svg/SVGAnimatedString.idl\nWebCore/svg/SVGAnimatedTransformList.idl\nWebCore/svg/SVGAnimationElement.idl\nWebCore/svg/SVGCircleElement.idl\nWebCore/svg/SVGClipPathElement.idl\nWebCore/svg/SVGColor.idl\nWebCore/svg/SVGComponentTransferFunctionElement.idl\nWebCore/svg/SVGCursorElement.idl\nWebCore/svg/SVGDefsElement.idl\nWebCore/svg/SVGDescElement.idl\nWebCore/svg/SVGDocument.idl\nWebCore/svg/SVGElement.idl\nWebCore/svg/SVGElementInstance.idl\nWebCore/svg/SVGElementInstanceList.idl\nWebCore/svg/SVGEllipseElement.idl\nWebCore/svg/SVGException.idl\nWebCore/svg/SVGExternalResourcesRequired.idl\nWebCore/svg/SVGFEBlendElement.idl\nWebCore/svg/SVGFEColorMatrixElement.idl\nWebCore/svg/SVGFEComponentTransferElement.idl\nWebCore/svg/SVGFECompositeElement.idl\nWebCore/svg/SVGFEConvolveMatrixElement.idl\nWebCore/svg/SVGFEDiffuseLightingElement.idl\nWebCore/svg/SVGFEDisplacementMapElement.idl\nWebCore/svg/SVGFEDistantLightElement.idl\nWebCore/svg/SVGFEDropShadowElement.idl\nWebCore/svg/SVGFEFloodElement.idl\nWebCore/svg/SVGFEFuncAElement.idl\nWebCore/svg/SVGFEFuncBElement.idl\nWebCore/svg/SVGFEFuncGElement.idl\nWebCore/svg/SVGFEFuncRElement.idl\nWebCore/svg/SVGFEGaussianBlurElement.idl\nWebCore/svg/SVGFEImageElement.idl\nWebCore/svg/SVGFEMergeElement.idl\nWebCore/svg/SVGFEMergeNodeElement.idl\nWebCore/svg/SVGFEMorphologyElement.idl\nWebCore/svg/SVGFEOffsetElement.idl\nWebCore/svg/SVGFEPointLightElement.idl\nWebCore/svg/SVGFESpecularLightingElement.idl\nWebCore/svg/SVGFESpotLightElement.idl\nWebCore/svg/SVGFETileElement.idl\nWebCore/svg/SVGFETurbulenceElement.idl\nWebCore/svg/SVGFilterElement.idl\nWebCore/svg/SVGFilterPrimitiveStandardAttributes.idl\nWebCore/svg/SVGFitToViewBox.idl\nWebCore/svg/SVGFontElement.idl\nWebCore/svg/SVGFontFaceElement.idl\nWebCore/svg/SVGFontFaceFormatElement.idl\nWebCore/svg/SVGFontFaceNameElement.idl\nWebCore/svg/SVGFontFaceSrcElement.idl\nWebCore/svg/SVGFontFaceUriElement.idl\nWebCore/svg/SVGForeignObjectElement.idl\nWebCore/svg/SVGGElement.idl\nWebCore/svg/SVGGlyphElement.idl\nWebCore/svg/SVGGlyphRefElement.idl\nWebCore/svg/SVGGradientElement.idl\nWebCore/svg/SVGHKernElement.idl\nWebCore/svg/SVGImageElement.idl\nWebCore/svg/SVGLangSpace.idl\nWebCore/svg/SVGLength.idl\nWebCore/svg/SVGLengthList.idl\nWebCore/svg/SVGLineElement.idl\nWebCore/svg/SVGLinearGradientElement.idl\nWebCore/svg/SVGLocatable.idl\nWebCore/svg/SVGMPathElement.idl\nWebCore/svg/SVGMarkerElement.idl\nWebCore/svg/SVGMaskElement.idl\nWebCore/svg/SVGMatrix.idl\nWebCore/svg/SVGMetadataElement.idl\nWebCore/svg/SVGMissingGlyphElement.idl\nWebCore/svg/SVGNumber.idl\nWebCore/svg/SVGNumberList.idl\nWebCore/svg/SVGPaint.idl\nWebCore/svg/SVGPathElement.idl\nWebCore/svg/SVGPathSeg.idl\nWebCore/svg/SVGPathSegArcAbs.idl\nWebCore/svg/SVGPathSegArcRel.idl\nWebCore/svg/SVGPathSegClosePath.idl\nWebCore/svg/SVGPathSegCurvetoCubicAbs.idl\nWebCore/svg/SVGPathSegCurvetoCubicRel.idl\nWebCore/svg/SVGPathSegCurvetoCubicSmoothAbs.idl\nWebCore/svg/SVGPathSegCurvetoCubicSmoothRel.idl\nWebCore/svg/SVGPathSegCurvetoQuadraticAbs.idl\nWebCore/svg/SVGPathSegCurvetoQuadraticRel.idl\nWebCore/svg/SVGPathSegCurvetoQuadraticSmoothAbs.idl\nWebCore/svg/SVGPathSegCurvetoQuadraticSmoothRel.idl\nWebCore/svg/SVGPathSegLinetoAbs.idl\nWebCore/svg/SVGPathSegLinetoHorizontalAbs.idl\nWebCore/svg/SVGPathSegLinetoHorizontalRel.idl\nWebCore/svg/SVGPathSegLinetoRel.idl\nWebCore/svg/SVGPathSegLinetoVerticalAbs.idl\nWebCore/svg/SVGPathSegLinetoVerticalRel.idl\nWebCore/svg/SVGPathSegList.idl\nWebCore/svg/SVGPathSegMovetoAbs.idl\nWebCore/svg/SVGPathSegMovetoRel.idl\nWebCore/svg/SVGPatternElement.idl\nWebCore/svg/SVGPoint.idl\nWebCore/svg/SVGPointList.idl\nWebCore/svg/SVGPolygonElement.idl\nWebCore/svg/SVGPolylineElement.idl\nWebCore/svg/SVGPreserveAspectRatio.idl\nWebCore/svg/SVGRadialGradientElement.idl\nWebCore/svg/SVGRect.idl\nWebCore/svg/SVGRectElement.idl\nWebCore/svg/SVGRenderingIntent.idl\nWebCore/svg/SVGSVGElement.idl\nWebCore/svg/SVGScriptElement.idl\nWebCore/svg/SVGSetElement.idl\nWebCore/svg/SVGStopElement.idl\nWebCore/svg/SVGStringList.idl\nWebCore/svg/SVGStyleElement.idl\nWebCore/svg/SVGStyledElement.idl\nWebCore/svg/SVGSwitchElement.idl\nWebCore/svg/SVGSymbolElement.idl\nWebCore/svg/SVGTRefElement.idl\nWebCore/svg/SVGTSpanElement.idl\nWebCore/svg/SVGTests.idl\nWebCore/svg/SVGTextContentElement.idl\nWebCore/svg/SVGTextElement.idl\nWebCore/svg/SVGTextPathElement.idl\nWebCore/svg/SVGTextPositioningElement.idl\nWebCore/svg/SVGTitleElement.idl\nWebCore/svg/SVGTransform.idl\nWebCore/svg/SVGTransformList.idl\nWebCore/svg/SVGTransformable.idl\nWebCore/svg/SVGURIReference.idl\nWebCore/svg/SVGUnitTypes.idl\nWebCore/svg/SVGUseElement.idl\nWebCore/svg/SVGVKernElement.idl\nWebCore/svg/SVGViewElement.idl\nWebCore/svg/SVGViewSpec.idl\nWebCore/svg/SVGZoomAndPan.idl\nWebCore/svg/SVGZoomEvent.idl\nWebCore/testing/Internals.idl\nWebCore/testing/InternalSettings.idl\nWebCore/testing/MallocStatistics.idl\nWebCore/testing/MemoryInfo.idl\nWebCore/testing/TypeConversions.idl\nWebCore/workers/AbstractWorker.idl\nWebCore/workers/DedicatedWorkerContext.idl\nWebCore/workers/SharedWorker.idl\nWebCore/workers/SharedWorkerContext.idl\nWebCore/workers/Worker.idl\nWebCore/workers/WorkerContext.idl\nWebCore/workers/WorkerLocation.idl\nWebCore/xml/DOMParser.idl\nWebCore/xml/XMLHttpRequest.idl\nWebCore/xml/XMLHttpRequestException.idl\nWebCore/xml/XMLHttpRequestProgressEvent.idl\nWebCore/xml/XMLHttpRequestUpload.idl\nWebCore/xml/XMLSerializer.idl\nWebCore/xml/XPathEvaluator.idl\nWebCore/xml/XPathException.idl\nWebCore/xml/XPathExpression.idl\nWebCore/xml/XPathNSResolver.idl\nWebCore/xml/XPathResult.idl\nWebCore/xml/XSLTProcessor.idl\nInternalSettingsGenerated.idl\nWebCore/inspector/JavaScriptCallFrame.idl\n" > ./idl_files.tmp
 59printf "WebCore/Modules/encryptedmedia/MediaKeyMessageEvent.idl\nWebCore/Modules/encryptedmedia/MediaKeyNeededEvent.idl\nWebCore/Modules/encryptedmedia/MediaKeySession.idl\nWebCore/Modules/encryptedmedia/MediaKeys.idl\nWebCore/Modules/filesystem/DOMFileSystem.idl\nWebCore/Modules/filesystem/DOMFileSystemSync.idl\nWebCore/Modules/filesystem/DOMWindowFileSystem.idl\nWebCore/Modules/filesystem/DirectoryEntry.idl\nWebCore/Modules/filesystem/DirectoryEntrySync.idl\nWebCore/Modules/filesystem/DirectoryReader.idl\nWebCore/Modules/filesystem/DirectoryReaderSync.idl\nWebCore/Modules/filesystem/EntriesCallback.idl\nWebCore/Modules/filesystem/Entry.idl\nWebCore/Modules/filesystem/EntryArray.idl\nWebCore/Modules/filesystem/EntryArraySync.idl\nWebCore/Modules/filesystem/EntryCallback.idl\nWebCore/Modules/filesystem/EntrySync.idl\nWebCore/Modules/filesystem/ErrorCallback.idl\nWebCore/Modules/filesystem/FileCallback.idl\nWebCore/Modules/filesystem/FileEntry.idl\nWebCore/Modules/filesystem/FileEntrySync.idl\nWebCore/Modules/filesystem/FileSystemCallback.idl\nWebCore/Modules/filesystem/FileWriter.idl\nWebCore/Modules/filesystem/FileWriterCallback.idl\nWebCore/Modules/filesystem/FileWriterSync.idl\nWebCore/Modules/filesystem/Metadata.idl\nWebCore/Modules/filesystem/MetadataCallback.idl\nWebCore/Modules/filesystem/WorkerContextFileSystem.idl\nWebCore/Modules/geolocation/Coordinates.idl\nWebCore/Modules/geolocation/Geolocation.idl\nWebCore/Modules/geolocation/Geoposition.idl\nWebCore/Modules/geolocation/NavigatorGeolocation.idl\nWebCore/Modules/geolocation/PositionCallback.idl\nWebCore/Modules/geolocation/PositionError.idl\nWebCore/Modules/geolocation/PositionErrorCallback.idl\nWebCore/Modules/indexeddb/DOMWindowIndexedDatabase.idl\nWebCore/Modules/indexeddb/IDBAny.idl\nWebCore/Modules/indexeddb/IDBCursor.idl\nWebCore/Modules/indexeddb/IDBDatabase.idl\nWebCore/Modules/indexeddb/IDBFactory.idl\nWebCore/Modules/indexeddb/IDBIndex.idl\nWebCore/Modules/indexeddb/IDBKeyRange.idl\nWebCore/Modules/indexeddb/IDBObjectStore.idl\nWebCore/Modules/indexeddb/IDBRequest.idl\nWebCore/Modules/indexeddb/IDBTransaction.idl\nWebCore/Modules/indexeddb/IDBVersionChangeEvent.idl\nWebCore/Modules/indexeddb/WorkerContextIndexedDatabase.idl\nWebCore/Modules/mediasource/MediaSource.idl\nWebCore/Modules/mediasource/SourceBuffer.idl\nWebCore/Modules/mediasource/SourceBufferList.idl\nWebCore/Modules/notifications/DOMWindowNotifications.idl\nWebCore/Modules/notifications/Notification.idl\nWebCore/Modules/notifications/NotificationCenter.idl\nWebCore/Modules/notifications/NotificationPermissionCallback.idl\nWebCore/Modules/notifications/WorkerContextNotifications.idl\nWebCore/Modules/quota/DOMWindowQuota.idl\nWebCore/Modules/quota/NavigatorStorageQuota.idl\nWebCore/Modules/quota/StorageInfo.idl\nWebCore/Modules/quota/StorageErrorCallback.idl\nWebCore/Modules/quota/StorageQuota.idl\nWebCore/Modules/quota/StorageQuotaCallback.idl\nWebCore/Modules/quota/StorageUsageCallback.idl\nWebCore/Modules/quota/WorkerNavigatorStorageQuota.idl\nWebCore/Modules/speech/DOMWindowSpeechSynthesis.idl\nWebCore/Modules/speech/SpeechSynthesis.idl\nWebCore/Modules/speech/SpeechSynthesisEvent.idl\nWebCore/Modules/speech/SpeechSynthesisUtterance.idl\nWebCore/Modules/speech/SpeechSynthesisVoice.idl\nWebCore/Modules/webaudio/AudioBuffer.idl\nWebCore/Modules/webaudio/AudioBufferCallback.idl\nWebCore/Modules/webaudio/AudioBufferSourceNode.idl\nWebCore/Modules/webaudio/ChannelMergerNode.idl\nWebCore/Modules/webaudio/ChannelSplitterNode.idl\nWebCore/Modules/webaudio/AudioContext.idl\nWebCore/Modules/webaudio/AudioDestinationNode.idl\nWebCore/Modules/webaudio/GainNode.idl\nWebCore/Modules/webaudio/AudioListener.idl\nWebCore/Modules/webaudio/AudioNode.idl\nWebCore/Modules/webaudio/PannerNode.idl\nWebCore/Modules/webaudio/AudioParam.idl\nWebCore/Modules/webaudio/AudioProcessingEvent.idl\nWebCore/Modules/webaudio/BiquadFilterNode.idl\nWebCore/Modules/webaudio/ConvolverNode.idl\nWebCore/Modules/webaudio/DOMWindowWebAudio.idl\nWebCore/Modules/webaudio/DelayNode.idl\nWebCore/Modules/webaudio/DynamicsCompressorNode.idl\nWebCore/Modules/webaudio/ScriptProcessorNode.idl\nWebCore/Modules/webaudio/MediaElementAudioSourceNode.idl\nWebCore/Modules/webaudio/MediaStreamAudioSourceNode.idl\nWebCore/Modules/webaudio/OscillatorNode.idl\nWebCore/Modules/webaudio/OfflineAudioContext.idl\nWebCore/Modules/webaudio/OfflineAudioCompletionEvent.idl\nWebCore/Modules/webaudio/AnalyserNode.idl\nWebCore/Modules/webaudio/WaveShaperNode.idl\nWebCore/Modules/webaudio/WaveTable.idl\nWebCore/Modules/webdatabase/DOMWindowWebDatabase.idl\nWebCore/Modules/webdatabase/Database.idl\nWebCore/Modules/webdatabase/DatabaseCallback.idl\nWebCore/Modules/webdatabase/DatabaseSync.idl\nWebCore/Modules/webdatabase/SQLError.idl\nWebCore/Modules/webdatabase/SQLException.idl\nWebCore/Modules/webdatabase/SQLResultSet.idl\nWebCore/Modules/webdatabase/SQLResultSetRowList.idl\nWebCore/Modules/webdatabase/SQLStatementCallback.idl\nWebCore/Modules/webdatabase/SQLStatementErrorCallback.idl\nWebCore/Modules/webdatabase/SQLTransaction.idl\nWebCore/Modules/webdatabase/SQLTransactionCallback.idl\nWebCore/Modules/webdatabase/SQLTransactionErrorCallback.idl\nWebCore/Modules/webdatabase/SQLTransactionSync.idl\nWebCore/Modules/webdatabase/SQLTransactionSyncCallback.idl\nWebCore/Modules/webdatabase/WorkerContextWebDatabase.idl\nWebCore/Modules/websockets/CloseEvent.idl\nWebCore/Modules/websockets/DOMWindowWebSocket.idl\nWebCore/Modules/websockets/WebSocket.idl\nWebCore/Modules/websockets/WorkerContextWebSocket.idl\nWebCore/css/CSSCharsetRule.idl\nWebCore/css/CSSFontFaceLoadEvent.idl\nWebCore/css/CSSFontFaceRule.idl\nWebCore/css/CSSHostRule.idl\nWebCore/css/CSSImportRule.idl\nWebCore/css/CSSMediaRule.idl\nWebCore/css/CSSPageRule.idl\nWebCore/css/CSSPrimitiveValue.idl\nWebCore/css/CSSRule.idl\nWebCore/css/CSSRuleList.idl\nWebCore/css/CSSStyleDeclaration.idl\nWebCore/css/CSSStyleRule.idl\nWebCore/css/CSSStyleSheet.idl\nWebCore/css/CSSSupportsRule.idl\nWebCore/css/CSSUnknownRule.idl\nWebCore/css/CSSValue.idl\nWebCore/css/CSSValueList.idl\nWebCore/css/Counter.idl\nWebCore/css/DOMWindowCSS.idl\nWebCore/css/FontLoader.idl\nWebCore/css/MediaList.idl\nWebCore/css/MediaQueryList.idl\nWebCore/css/MediaQueryListListener.idl\nWebCore/css/RGBColor.idl\nWebCore/css/Rect.idl\nWebCore/css/StyleMedia.idl\nWebCore/css/StyleSheet.idl\nWebCore/css/StyleSheetList.idl\nWebCore/css/WebKitCSSFilterValue.idl\nWebCore/css/WebKitCSSFilterRule.idl\nWebCore/css/WebKitCSSKeyframeRule.idl\nWebCore/css/WebKitCSSKeyframesRule.idl\nWebCore/css/WebKitCSSMatrix.idl\nWebCore/css/WebKitCSSMixFunctionValue.idl\nWebCore/css/WebKitCSSRegionRule.idl\nWebCore/css/WebKitCSSTransformValue.idl\nWebCore/css/WebKitCSSViewportRule.idl\nWebCore/dom/Attr.idl\nWebCore/dom/BeforeLoadEvent.idl\nWebCore/dom/CDATASection.idl\nWebCore/dom/CharacterData.idl\nWebCore/dom/ClientRect.idl\nWebCore/dom/ClientRectList.idl\nWebCore/dom/Clipboard.idl\nWebCore/dom/Comment.idl\nWebCore/dom/CompositionEvent.idl\nWebCore/dom/CustomElementConstructor.idl\nWebCore/dom/CustomEvent.idl\nWebCore/dom/DOMCoreException.idl\nWebCore/dom/DOMError.idl\nWebCore/dom/DOMImplementation.idl\nWebCore/dom/DOMStringList.idl\nWebCore/dom/DOMStringMap.idl\nWebCore/dom/DataTransferItem.idl\nWebCore/dom/DataTransferItemList.idl\nWebCore/dom/DeviceMotionEvent.idl\nWebCore/dom/DeviceOrientationEvent.idl\nWebCore/dom/Document.idl\nWebCore/dom/DocumentFragment.idl\nWebCore/dom/DocumentType.idl\nWebCore/dom/Element.idl\nWebCore/dom/Entity.idl\nWebCore/dom/EntityReference.idl\nWebCore/dom/ErrorEvent.idl\nWebCore/dom/Event.idl\nWebCore/dom/EventException.idl\nWebCore/dom/EventListener.idl\nWebCore/dom/EventTarget.idl\nWebCore/dom/FocusEvent.idl\nWebCore/dom/HashChangeEvent.idl\nWebCore/dom/KeyboardEvent.idl\nWebCore/dom/MessageChannel.idl\nWebCore/dom/MessageEvent.idl\nWebCore/dom/MessagePort.idl\nWebCore/dom/MouseEvent.idl\nWebCore/dom/MutationEvent.idl\nWebCore/dom/MutationObserver.idl\nWebCore/dom/MutationRecord.idl\nWebCore/dom/DOMNamedFlowCollection.idl\nWebCore/dom/NamedNodeMap.idl\nWebCore/dom/Node.idl\nWebCore/dom/NodeFilter.idl\nWebCore/dom/NodeIterator.idl\nWebCore/dom/NodeList.idl\nWebCore/dom/Notation.idl\nWebCore/dom/OverflowEvent.idl\nWebCore/dom/PageTransitionEvent.idl\nWebCore/dom/PopStateEvent.idl\nWebCore/dom/ProcessingInstruction.idl\nWebCore/dom/ProgressEvent.idl\nWebCore/dom/ProgressEvent.idl\nWebCore/dom/PropertyNodeList.idl\nWebCore/dom/Range.idl\nWebCore/dom/RangeException.idl\nWebCore/dom/RequestAnimationFrameCallback.idl\nWebCore/dom/ShadowRoot.idl\nWebCore/dom/StringCallback.idl\nWebCore/dom/Text.idl\nWebCore/dom/TextEvent.idl\nWebCore/dom/Touch.idl\nWebCore/dom/TouchEvent.idl\nWebCore/dom/TouchList.idl\nWebCore/dom/TransitionEvent.idl\nWebCore/dom/TreeWalker.idl\nWebCore/dom/UIEvent.idl\nWebCore/dom/WebKitAnimationEvent.idl\nWebCore/dom/WebKitNamedFlow.idl\nWebCore/dom/WebKitTransitionEvent.idl\nWebCore/dom/WheelEvent.idl\nWebCore/fileapi/Blob.idl\nWebCore/fileapi/File.idl\nWebCore/fileapi/FileError.idl\nWebCore/fileapi/FileException.idl\nWebCore/fileapi/FileList.idl\nWebCore/fileapi/FileReader.idl\nWebCore/fileapi/FileReaderSync.idl\nWebCore/html/DOMFormData.idl\nWebCore/html/DOMSettableTokenList.idl\nWebCore/html/DOMTokenList.idl\nWebCore/html/DOMURL.idl\nWebCore/html/HTMLAllCollection.idl\nWebCore/html/HTMLAnchorElement.idl\nWebCore/html/HTMLAppletElement.idl\nWebCore/html/HTMLAreaElement.idl\nWebCore/html/HTMLAudioElement.idl\nWebCore/html/HTMLBRElement.idl\nWebCore/html/HTMLBaseElement.idl\nWebCore/html/HTMLBodyElement.idl\nWebCore/html/HTMLButtonElement.idl\nWebCore/html/HTMLCanvasElement.idl\nWebCore/html/HTMLCollection.idl\nWebCore/html/HTMLDListElement.idl\nWebCore/html/HTMLDataListElement.idl\nWebCore/html/HTMLDetailsElement.idl\nWebCore/html/HTMLDialogElement.idl\nWebCore/html/HTMLDirectoryElement.idl\nWebCore/html/HTMLDivElement.idl\nWebCore/html/HTMLDocument.idl\nWebCore/html/HTMLElement.idl\nWebCore/html/HTMLEmbedElement.idl\nWebCore/html/HTMLFieldSetElement.idl\nWebCore/html/HTMLFontElement.idl\nWebCore/html/HTMLFormControlsCollection.idl\nWebCore/html/HTMLFormElement.idl\nWebCore/html/HTMLFrameElement.idl\nWebCore/html/HTMLFrameSetElement.idl\nWebCore/html/HTMLHRElement.idl\nWebCore/html/HTMLHeadElement.idl\nWebCore/html/HTMLHeadingElement.idl\nWebCore/html/HTMLHtmlElement.idl\nWebCore/html/HTMLIFrameElement.idl\nWebCore/html/HTMLImageElement.idl\nWebCore/html/HTMLInputElement.idl\nWebCore/html/HTMLKeygenElement.idl\nWebCore/html/HTMLLIElement.idl\nWebCore/html/HTMLLabelElement.idl\nWebCore/html/HTMLLegendElement.idl\nWebCore/html/HTMLLinkElement.idl\nWebCore/html/HTMLMapElement.idl\nWebCore/html/HTMLMarqueeElement.idl\nWebCore/html/HTMLMediaElement.idl\nWebCore/html/HTMLMenuElement.idl\nWebCore/html/HTMLMetaElement.idl\nWebCore/html/HTMLMeterElement.idl\nWebCore/html/HTMLModElement.idl\nWebCore/html/HTMLOListElement.idl\nWebCore/html/HTMLObjectElement.idl\nWebCore/html/HTMLOptGroupElement.idl\nWebCore/html/HTMLOptionElement.idl\nWebCore/html/HTMLOptionsCollection.idl\nWebCore/html/HTMLOutputElement.idl\nWebCore/html/HTMLParagraphElement.idl\nWebCore/html/HTMLParamElement.idl\nWebCore/html/HTMLPreElement.idl\nWebCore/html/HTMLProgressElement.idl\nWebCore/html/HTMLPropertiesCollection.idl\nWebCore/html/HTMLQuoteElement.idl\nWebCore/html/HTMLScriptElement.idl\nWebCore/html/HTMLSelectElement.idl\nWebCore/html/HTMLSourceElement.idl\nWebCore/html/HTMLSpanElement.idl\nWebCore/html/HTMLStyleElement.idl\nWebCore/html/HTMLTableCaptionElement.idl\nWebCore/html/HTMLTableCellElement.idl\nWebCore/html/HTMLTableColElement.idl\nWebCore/html/HTMLTableElement.idl\nWebCore/html/HTMLTableRowElement.idl\nWebCore/html/HTMLTableSectionElement.idl\nWebCore/html/HTMLTemplateElement.idl\nWebCore/html/HTMLTextAreaElement.idl\nWebCore/html/HTMLTitleElement.idl\nWebCore/html/HTMLTrackElement.idl\nWebCore/html/HTMLUListElement.idl\nWebCore/html/HTMLUnknownElement.idl\nWebCore/html/HTMLVideoElement.idl\nWebCore/html/ImageData.idl\nWebCore/html/MediaController.idl\nWebCore/html/MediaError.idl\nWebCore/html/MediaKeyError.idl\nWebCore/html/MediaKeyEvent.idl\nWebCore/html/MicroDataItemValue.idl\nWebCore/html/RadioNodeList.idl\nWebCore/html/TextMetrics.idl\nWebCore/html/TimeRanges.idl\nWebCore/html/ValidityState.idl\nWebCore/html/VoidCallback.idl\nWebCore/html/canvas/ArrayBuffer.idl\nWebCore/html/canvas/ArrayBufferView.idl\nWebCore/html/canvas/CanvasGradient.idl\nWebCore/html/canvas/CanvasPattern.idl\nWebCore/html/canvas/CanvasProxy.idl\nWebCore/html/canvas/CanvasRenderingContext.idl\nWebCore/html/canvas/CanvasRenderingContext2D.idl\nWebCore/html/canvas/DataView.idl\nWebCore/html/canvas/DOMPath.idl\nWebCore/html/canvas/EXTDrawBuffers.idl\nWebCore/html/canvas/EXTTextureFilterAnisotropic.idl\nWebCore/html/canvas/Float32Array.idl\nWebCore/html/canvas/Float64Array.idl\nWebCore/html/canvas/Int16Array.idl\nWebCore/html/canvas/Int32Array.idl\nWebCore/html/canvas/Int8Array.idl\nWebCore/html/canvas/OESElementIndexUint.idl\nWebCore/html/canvas/OESStandardDerivatives.idl\nWebCore/html/canvas/OESTextureFloat.idl\nWebCore/html/canvas/OESTextureHalfFloat.idl\nWebCore/html/canvas/OESVertexArrayObject.idl\nWebCore/html/canvas/Uint16Array.idl\nWebCore/html/canvas/Uint32Array.idl\nWebCore/html/canvas/Uint8Array.idl\nWebCore/html/canvas/Uint8ClampedArray.idl\nWebCore/html/canvas/WebGLActiveInfo.idl\nWebCore/html/canvas/WebGLBuffer.idl\nWebCore/html/canvas/WebGLCompressedTextureATC.idl\nWebCore/html/canvas/WebGLCompressedTexturePVRTC.idl\nWebCore/html/canvas/WebGLCompressedTextureS3TC.idl\nWebCore/html/canvas/WebGLContextAttributes.idl\nWebCore/html/canvas/WebGLContextEvent.idl\nWebCore/html/canvas/WebGLDepthTexture.idl\nWebCore/html/canvas/WebGLFramebuffer.idl\nWebCore/html/canvas/WebGLLoseContext.idl\nWebCore/html/canvas/WebGLProgram.idl\nWebCore/html/canvas/WebGLRenderbuffer.idl\nWebCore/html/canvas/WebGLRenderingContext.idl\nWebCore/html/canvas/WebGLShader.idl\nWebCore/html/canvas/WebGLShaderPrecisionFormat.idl\nWebCore/html/canvas/WebGLTexture.idl\nWebCore/html/canvas/WebGLUniformLocation.idl\nWebCore/html/canvas/WebGLVertexArrayObjectOES.idl\nWebCore/html/shadow/HTMLContentElement.idl\nWebCore/html/shadow/HTMLShadowElement.idl\nWebCore/html/track/TextTrack.idl\nWebCore/html/track/TextTrackCue.idl\nWebCore/html/track/TextTrackCueList.idl\nWebCore/html/track/TextTrackList.idl\nWebCore/html/track/TrackEvent.idl\nWebCore/inspector/InjectedScriptHost.idl\nWebCore/inspector/InspectorFrontendHost.idl\nWebCore/inspector/ScriptProfile.idl\nWebCore/inspector/ScriptProfileNode.idl\nWebCore/loader/appcache/DOMApplicationCache.idl\nWebCore/page/AbstractView.idl\nWebCore/page/BarInfo.idl\nWebCore/page/Console.idl\nWebCore/page/Crypto.idl\nWebCore/page/DOMSecurityPolicy.idl\nWebCore/page/DOMSelection.idl\nWebCore/page/DOMWindow.idl\nWebCore/page/EventSource.idl\nWebCore/page/History.idl\nWebCore/page/Location.idl\nWebCore/page/Navigator.idl\nWebCore/page/Performance.idl\nWebCore/page/PerformanceNavigation.idl\nWebCore/page/PerformanceTiming.idl\nWebCore/page/Screen.idl\nWebCore/page/SpeechInputEvent.idl\nWebCore/page/SpeechInputResult.idl\nWebCore/page/SpeechInputResultList.idl\nWebCore/page/WebKitPoint.idl\nWebCore/page/WorkerNavigator.idl\nWebCore/plugins/DOMMimeType.idl\nWebCore/plugins/DOMMimeTypeArray.idl\nWebCore/plugins/DOMPlugin.idl\nWebCore/plugins/DOMPluginArray.idl\nWebCore/storage/Storage.idl\nWebCore/storage/StorageEvent.idl\nWebCore/svg/ElementTimeControl.idl\nWebCore/svg/SVGAElement.idl\nWebCore/svg/SVGAltGlyphDefElement.idl\nWebCore/svg/SVGAltGlyphElement.idl\nWebCore/svg/SVGAltGlyphItemElement.idl\nWebCore/svg/SVGAngle.idl\nWebCore/svg/SVGAnimateColorElement.idl\nWebCore/svg/SVGAnimateElement.idl\nWebCore/svg/SVGAnimateMotionElement.idl\nWebCore/svg/SVGAnimateTransformElement.idl\nWebCore/svg/SVGAnimatedAngle.idl\nWebCore/svg/SVGAnimatedBoolean.idl\nWebCore/svg/SVGAnimatedEnumeration.idl\nWebCore/svg/SVGAnimatedInteger.idl\nWebCore/svg/SVGAnimatedLength.idl\nWebCore/svg/SVGAnimatedLengthList.idl\nWebCore/svg/SVGAnimatedNumber.idl\nWebCore/svg/SVGAnimatedNumberList.idl\nWebCore/svg/SVGAnimatedPreserveAspectRatio.idl\nWebCore/svg/SVGAnimatedRect.idl\nWebCore/svg/SVGAnimatedString.idl\nWebCore/svg/SVGAnimatedTransformList.idl\nWebCore/svg/SVGAnimationElement.idl\nWebCore/svg/SVGCircleElement.idl\nWebCore/svg/SVGClipPathElement.idl\nWebCore/svg/SVGColor.idl\nWebCore/svg/SVGComponentTransferFunctionElement.idl\nWebCore/svg/SVGCursorElement.idl\nWebCore/svg/SVGDefsElement.idl\nWebCore/svg/SVGDescElement.idl\nWebCore/svg/SVGDocument.idl\nWebCore/svg/SVGElement.idl\nWebCore/svg/SVGElementInstance.idl\nWebCore/svg/SVGElementInstanceList.idl\nWebCore/svg/SVGEllipseElement.idl\nWebCore/svg/SVGException.idl\nWebCore/svg/SVGExternalResourcesRequired.idl\nWebCore/svg/SVGFEBlendElement.idl\nWebCore/svg/SVGFEColorMatrixElement.idl\nWebCore/svg/SVGFEComponentTransferElement.idl\nWebCore/svg/SVGFECompositeElement.idl\nWebCore/svg/SVGFEConvolveMatrixElement.idl\nWebCore/svg/SVGFEDiffuseLightingElement.idl\nWebCore/svg/SVGFEDisplacementMapElement.idl\nWebCore/svg/SVGFEDistantLightElement.idl\nWebCore/svg/SVGFEDropShadowElement.idl\nWebCore/svg/SVGFEFloodElement.idl\nWebCore/svg/SVGFEFuncAElement.idl\nWebCore/svg/SVGFEFuncBElement.idl\nWebCore/svg/SVGFEFuncGElement.idl\nWebCore/svg/SVGFEFuncRElement.idl\nWebCore/svg/SVGFEGaussianBlurElement.idl\nWebCore/svg/SVGFEImageElement.idl\nWebCore/svg/SVGFEMergeElement.idl\nWebCore/svg/SVGFEMergeNodeElement.idl\nWebCore/svg/SVGFEMorphologyElement.idl\nWebCore/svg/SVGFEOffsetElement.idl\nWebCore/svg/SVGFEPointLightElement.idl\nWebCore/svg/SVGFESpecularLightingElement.idl\nWebCore/svg/SVGFESpotLightElement.idl\nWebCore/svg/SVGFETileElement.idl\nWebCore/svg/SVGFETurbulenceElement.idl\nWebCore/svg/SVGFilterElement.idl\nWebCore/svg/SVGFilterPrimitiveStandardAttributes.idl\nWebCore/svg/SVGFitToViewBox.idl\nWebCore/svg/SVGFontElement.idl\nWebCore/svg/SVGFontFaceElement.idl\nWebCore/svg/SVGFontFaceFormatElement.idl\nWebCore/svg/SVGFontFaceNameElement.idl\nWebCore/svg/SVGFontFaceSrcElement.idl\nWebCore/svg/SVGFontFaceUriElement.idl\nWebCore/svg/SVGForeignObjectElement.idl\nWebCore/svg/SVGGElement.idl\nWebCore/svg/SVGGlyphElement.idl\nWebCore/svg/SVGGlyphRefElement.idl\nWebCore/svg/SVGGradientElement.idl\nWebCore/svg/SVGHKernElement.idl\nWebCore/svg/SVGImageElement.idl\nWebCore/svg/SVGLangSpace.idl\nWebCore/svg/SVGLength.idl\nWebCore/svg/SVGLengthList.idl\nWebCore/svg/SVGLineElement.idl\nWebCore/svg/SVGLinearGradientElement.idl\nWebCore/svg/SVGLocatable.idl\nWebCore/svg/SVGMPathElement.idl\nWebCore/svg/SVGMarkerElement.idl\nWebCore/svg/SVGMaskElement.idl\nWebCore/svg/SVGMatrix.idl\nWebCore/svg/SVGMetadataElement.idl\nWebCore/svg/SVGMissingGlyphElement.idl\nWebCore/svg/SVGNumber.idl\nWebCore/svg/SVGNumberList.idl\nWebCore/svg/SVGPaint.idl\nWebCore/svg/SVGPathElement.idl\nWebCore/svg/SVGPathSeg.idl\nWebCore/svg/SVGPathSegArcAbs.idl\nWebCore/svg/SVGPathSegArcRel.idl\nWebCore/svg/SVGPathSegClosePath.idl\nWebCore/svg/SVGPathSegCurvetoCubicAbs.idl\nWebCore/svg/SVGPathSegCurvetoCubicRel.idl\nWebCore/svg/SVGPathSegCurvetoCubicSmoothAbs.idl\nWebCore/svg/SVGPathSegCurvetoCubicSmoothRel.idl\nWebCore/svg/SVGPathSegCurvetoQuadraticAbs.idl\nWebCore/svg/SVGPathSegCurvetoQuadraticRel.idl\nWebCore/svg/SVGPathSegCurvetoQuadraticSmoothAbs.idl\nWebCore/svg/SVGPathSegCurvetoQuadraticSmoothRel.idl\nWebCore/svg/SVGPathSegLinetoAbs.idl\nWebCore/svg/SVGPathSegLinetoHorizontalAbs.idl\nWebCore/svg/SVGPathSegLinetoHorizontalRel.idl\nWebCore/svg/SVGPathSegLinetoRel.idl\nWebCore/svg/SVGPathSegLinetoVerticalAbs.idl\nWebCore/svg/SVGPathSegLinetoVerticalRel.idl\nWebCore/svg/SVGPathSegList.idl\nWebCore/svg/SVGPathSegMovetoAbs.idl\nWebCore/svg/SVGPathSegMovetoRel.idl\nWebCore/svg/SVGPatternElement.idl\nWebCore/svg/SVGPoint.idl\nWebCore/svg/SVGPointList.idl\nWebCore/svg/SVGPolygonElement.idl\nWebCore/svg/SVGPolylineElement.idl\nWebCore/svg/SVGPreserveAspectRatio.idl\nWebCore/svg/SVGRadialGradientElement.idl\nWebCore/svg/SVGRect.idl\nWebCore/svg/SVGRectElement.idl\nWebCore/svg/SVGRenderingIntent.idl\nWebCore/svg/SVGSVGElement.idl\nWebCore/svg/SVGScriptElement.idl\nWebCore/svg/SVGSetElement.idl\nWebCore/svg/SVGStopElement.idl\nWebCore/svg/SVGStringList.idl\nWebCore/svg/SVGStyleElement.idl\nWebCore/svg/SVGStyledElement.idl\nWebCore/svg/SVGSwitchElement.idl\nWebCore/svg/SVGSymbolElement.idl\nWebCore/svg/SVGTRefElement.idl\nWebCore/svg/SVGTSpanElement.idl\nWebCore/svg/SVGTests.idl\nWebCore/svg/SVGTextContentElement.idl\nWebCore/svg/SVGTextElement.idl\nWebCore/svg/SVGTextPathElement.idl\nWebCore/svg/SVGTextPositioningElement.idl\nWebCore/svg/SVGTitleElement.idl\nWebCore/svg/SVGTransform.idl\nWebCore/svg/SVGTransformList.idl\nWebCore/svg/SVGTransformable.idl\nWebCore/svg/SVGURIReference.idl\nWebCore/svg/SVGUnitTypes.idl\nWebCore/svg/SVGUseElement.idl\nWebCore/svg/SVGVKernElement.idl\nWebCore/svg/SVGViewElement.idl\nWebCore/svg/SVGViewSpec.idl\nWebCore/svg/SVGZoomAndPan.idl\nWebCore/svg/SVGZoomEvent.idl\nWebCore/testing/Internals.idl\nWebCore/testing/InternalSettings.idl\nWebCore/testing/MallocStatistics.idl\nWebCore/testing/MemoryInfo.idl\nWebCore/testing/TypeConversions.idl\nWebCore/workers/AbstractWorker.idl\nWebCore/workers/DedicatedWorkerContext.idl\nWebCore/workers/SharedWorker.idl\nWebCore/workers/SharedWorkerContext.idl\nWebCore/workers/Worker.idl\nWebCore/workers/WorkerContext.idl\nWebCore/workers/WorkerLocation.idl\nWebCore/xml/DOMParser.idl\nWebCore/xml/XMLHttpRequest.idl\nWebCore/xml/XMLHttpRequestException.idl\nWebCore/xml/XMLHttpRequestProgressEvent.idl\nWebCore/xml/XMLHttpRequestUpload.idl\nWebCore/xml/XMLSerializer.idl\nWebCore/xml/XPathEvaluator.idl\nWebCore/xml/XPathException.idl\nWebCore/xml/XPathExpression.idl\nWebCore/xml/XPathNSResolver.idl\nWebCore/xml/XPathResult.idl\nWebCore/xml/XSLTProcessor.idl\nInternalSettingsGenerated.idl\nWebCore/inspector/JavaScriptCallFrame.idl\n" > ./idl_files.tmp
6060perl JavaScriptCore/docs/make-bytecode-docs.pl JavaScriptCore/interpreter/Interpreter.cpp docs/bytecode.html
6161cat WebCore/css/CSSPropertyNames.in WebCore/css/SVGCSSPropertyNames.in > CSSPropertyNames.in
6262rm -f ./idl_files.tmp