OLD | NEW |
---|---|
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="../../http/tests/inspector/inspector-test.js"></script> | 3 <script src="../../http/tests/inspector/inspector-test.js"></script> |
4 <script src="../../http/tests/inspector/console-test.js"></script> | 4 <script src="../../http/tests/inspector/console-test.js"></script> |
5 <script> | 5 <script> |
6 | 6 console.error = function() {}; |
dgozman
2016/01/26 02:45:14
This looks like a bad idea. What if we start getti
pfeldman
2016/01/27 01:24:09
Done.
| |
7 var a = {name: "a"}; | 7 var a = {name: "a"}; |
8 var b = {name: "b"}; | 8 var b = {name: "b"}; |
9 var c = {name: "c"}; | 9 var c = {name: "c"}; |
10 | 10 |
11 a.formattableBy1 = true; | 11 a.formattableBy1 = true; |
12 b.formattableBy2 = true; | 12 b.formattableBy2 = true; |
13 c.formattableBy1 = true; | 13 c.formattableBy1 = true; |
14 c.formattableBy2 = true; | 14 c.formattableBy2 = true; |
15 | 15 |
16 var formatter1 = { | 16 var formatter1 = { |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
156 InspectorTest.completeTest(); | 156 InspectorTest.completeTest(); |
157 } | 157 } |
158 } | 158 } |
159 </script> | 159 </script> |
160 </head> | 160 </head> |
161 | 161 |
162 <body onload="runTest()"> | 162 <body onload="runTest()"> |
163 <p>Tests that console logging dumps properly when there are multiple custom form atters on the page</p> | 163 <p>Tests that console logging dumps properly when there are multiple custom form atters on the page</p> |
164 </body> | 164 </body> |
165 </html> | 165 </html> |
OLD | NEW |