| <html> |
| <head> |
| <meta charset='utf-8'> |
| <style> |
| .pass { |
| font-weight: bold; |
| color: green; |
| } |
| .fail { |
| font-weight: bold; |
| color: red; |
| } |
| </style> |
| |
| <script> |
| if (window.layoutTestController) |
| layoutTestController.dumpAsText(); |
| |
| function SputnikError(message) |
| { |
| this.message = message; |
| } |
| |
| SputnikError.prototype.toString = function () |
| { |
| return 'SputnikError: ' + this.message; |
| }; |
| |
| var sputnikException; |
| |
| function testPrint(msg) |
| { |
| var span = document.createElement("span"); |
| document.getElementById("console").appendChild(span); // insert it first so XHTML knows the namespace |
| span.innerHTML = msg + '<br />'; |
| } |
| |
| function escapeHTML(text) |
| { |
| return text.toString().replace(/&/g, "&").replace(/</g, "<"); |
| } |
| |
| function printTestPassed(msg) |
| { |
| testPrint('<span><span class="pass">PASS</span> ' + escapeHTML(msg) + '</span>'); |
| } |
| |
| function printTestFailed(msg) |
| { |
| testPrint('<span><span class="fail">FAIL</span> ' + escapeHTML(msg) + '</span>'); |
| } |
| |
| function testFailed(msg) |
| { |
| throw new SputnikError(msg); |
| } |
| |
| var successfullyParsed = false; |
| </script> |
| |
| </head> |
| <body> |
| <p>S13_A7_T1</p> |
| <div id='console'></div> |
| <script> |
| try { |
| |
| /** |
| * @name: S13_A7_T1; |
| * @section: 13; |
| * @assertion: The FunctionBody must be SourceElements; |
| * @description: Using only SourceElements within the FunctionBody; |
| */ |
| |
| function __func(){'ground control to major tom'}; |
| ////////////////////////////////////////////////////////////////////////////// |
| //CHECK#1 |
| if (typeof __func !== "function") { |
| testFailed('#1: typeof __func === "function". Actual: typeof __func ==='+typeof __func); |
| } |
| // |
| ////////////////////////////////////////////////////////////////////////////// |
| |
| function __func__2(){b}; |
| ////////////////////////////////////////////////////////////////////////////// |
| //CHECK#2 |
| if (typeof __func__2 !== "function") { |
| testFailed('#2: typeof __func__2 === "function". Actual: typeof __func__2 ==='+typeof __func__2); |
| } |
| // |
| ////////////////////////////////////////////////////////////////////////////// |
| |
| function __func__3(){1}; |
| ////////////////////////////////////////////////////////////////////////////// |
| //CHECK#3 |
| if (typeof __func__3 !== "function") { |
| testFailed('#3: typeof __func__3 === "function". Actual: typeof __func__3 ==='+typeof __func__3); |
| } |
| // |
| ////////////////////////////////////////////////////////////////////////////// |
| |
| function __func__4(){1+c}; |
| ////////////////////////////////////////////////////////////////////////////// |
| //CHECK#4 |
| if (typeof __func__4 !== "function") { |
| testFailed('#4: typeof __func__4 === "function". Actual: typeof __func__4 ==='+typeof __func__4); |
| } |
| // |
| ////////////////////////////////////////////////////////////////////////////// |
| |
| function __func__5(){inc(d)}; |
| ////////////////////////////////////////////////////////////////////////////// |
| //CHECK#5 |
| if (typeof __func__5 !== "function") { |
| testFailed('#5: typeof __func__5 === "function". Actual: typeof __func__5 ==='+typeof __func__5); |
| } |
| // |
| ////////////////////////////////////////////////////////////////////////////// |
| |
| function __func__6(){var \u0042 = 1;}; |
| ////////////////////////////////////////////////////////////////////////////// |
| //CHECK#6 |
| if (typeof __func__6 !== "function") { |
| testFailed('#6: typeof __func__6 === "function". Actual: typeof __func__6 ==='+typeof __func__6); |
| } |
| // |
| ////////////////////////////////////////////////////////////////////////////// |
| |
| //function __func__7(){var \u003d = 1;}; |
| //////////////////////////////////////////////////////////////////////////////// |
| ////CHECK#7 |
| //if (typeof __func__7 !== "function") { |
| // testFailed('#7: The FunctionBody must be SourceElements'); |
| //} |
| // |
| ////////////////////////////////////////////////////////////////////////////// |
| |
| } catch (ex) { |
| sputnikException = ex; |
| } |
| |
| var successfullyParsed = true; |
| </script> |
| |
| <script> |
| if (!successfullyParsed) |
| printTestFailed('successfullyParsed is not set'); |
| else if (sputnikException) |
| printTestFailed(sputnikException); |
| else |
| printTestPassed(""); |
| testPrint('<br /><span class="pass">TEST COMPLETE</span>'); |
| </script> |
| </body> |
| </html> |