3 <script type="text/vbscript">
13 ' Verifies that we're in VBScript although there is no type specified
14 If true then counter = counter+1
16 <script type="text/javascript">
17 // We're in javascript
19 <script type="text/vbscript">
20 ' And back to VBScript
21 If true then counter = counter+1
24 Call ok(counter = 3, "counter = " & counter)
25 Call external.reportSuccess()
29 <body onload="If true then runTest()">