jstest.html 15.1 KB
Newer Older
1 2
<html>
<head>
3 4 5
<script src="winetest.js" type="text/javascript"></script>
</head>
<head>
6
<script>
7 8 9 10
function broken(expr) {
    return external.broken(expr);
}

11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
function test_removeAttribute(e) {
    ok(e.removeAttribute('nonexisting') === false, "removeAttribute('nonexisting') didn't return false");

    e.title = "title";
    ok(e.removeAttribute('title') === true, "removeAttribute('title') didn't return true");
    ok(e.title === "", "e.title = " + e.title);
    ok(("title" in e) === true, "title is not in e");

    e["myattr"] = "test";
    ok(e.removeAttribute('myattr') === true, "removeAttribute('myattr') didn't return true");
    ok(e["myattr"] === undefined, "e['myattr'] = " + e['myattr']);
    ok(("myattr" in e) === false, "myattr is in e");

}

26 27 28 29 30 31 32 33 34 35 36
function test_select_index() {
    var s = document.getElementById("sel");

    ok("0" in s, "'0' is not in s");
    ok(s[0].text === "opt1", "s[0].text = " + s[0].text);
    ok("1" in s, "'1 is not in s");
    ok(s[1].text === "opt2", "s[1].text = " + s[1].text);
    ok("2" in s, "'2' is in s");
    ok(s[2] === null, "s[2] = " + s[2]);
}

37 38 39 40
function test_createDocumentFragment() {
    var fragment = document.createDocumentFragment();

    ok(typeof(fragment) === "object", "typeof(fragmend) = " + typeof(fragment));
41
    ok(fragment.nodeType === 11, "fragment.nodeType = " + fragment.nodeType);
42
    ok(fragment.nodeName === "#document-fragment", "fragment.nodeName = " + fragment.nodeName);
43 44 45 46

    var cloned = fragment.cloneNode(true);
    ok(cloned.nodeType === 11, "cloned.nodeType = " + cloned.nodeType);
    ok(cloned.nodeName === "#document-fragment", "cloned.nodeName = " + cloned.nodeName);
47 48
}

49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
function test_document_name_as_index() {
    document.body.innerHTML = '<form name="formname"></form>';
    var e = document.getElementById("formname");
    ok(!!e, "e is null");

    ok(document.formname === e, "document.formname != getElementById('formname')");
    ok("formname" in document, "formname' is not in document");

    document.body.removeChild(e);

    ok(document.formname === undefined, "document.formname is not undefined");
    ok(!("formname" in document), "formname' is in document");

    document.body.innerHTML = '<form id="formid"></form>';
    var e = document.getElementById("formid");
    ok(!!e, "e is null");
    ok(!("formid" in document), "formid is in document");
66 67 68 69 70 71 72 73

    document.body.innerHTML = '<form name="formname"></form>';
    ok("formname" in window, "formname' is not in window");
    ok(typeof(window.formname) === "object", "typeof(window.formname) = " + typeof(window.formname));
    window.formname = 1;
    ok(window.formname === 1, "window.formname = " + window.formname);
    formname = 2;
    ok(window.formname === 2, "window.formname = " + window.formname);
74 75 76 77 78 79 80

    document.body.innerHTML = '<iframe id="iframeid"></iframe>';
    ok("iframeid" in window, "iframeid is not in window");
    e = document.getElementById("iframeid");
    ok(!!e, "e is null");
    ok(iframeid != e, "iframeid == e");
    ok(iframeid.frameElement === e, "frameid != e.contentWindow");
81 82
}

83 84 85 86 87 88 89 90 91 92
function test_remove_style_attribute() {
    var s = document.body.style, b;

    s.somevar = "test";
    b = s.removeAttribute("somevar", 1);
    ok(b, "removeAttribute returned " + b + " expected true");
    b = s.removeAttribute("somevar", 1);
    ok(b === false, "removeAttribute returned " + b + " expected false");
}

93 94 95 96 97 98 99 100 101 102 103
function test_clone_node() {
    var elem, cloned;

    elem = document.getElementById("divid");
    elem.style.filter = "alpha(opacity=50)";
    ok(elem.style.filter === "alpha(opacity=50)", "elem.style.filter = " + elem.style.filter);

    cloned = elem.cloneNode(true);
    ok(cloned.style.filter === "alpha(opacity=50)", "cloned.style.filter = " + cloned.style.filter);
}

104 105
function test_attrs() {
    var input, s, x, f, b;
106 107 108

    document.body.innerHTML = '<input id="inputid"></input>';
    input = document.getElementById("inputid");
109 110
    s = input.style;
    f = input.fireEvent;
111 112 113 114 115 116 117 118 119 120
    ok(input.checked === false, "input.checked = " + input.checked);

    input.setAttribute("checked", "test");
    ok(input.checked === true, "input.checked = " + input.checked);

    input.setAttribute("checked", 0);
    ok(input.checked === false, "input.checked = " + input.checked);

    input.setAttribute("checked", "");
    ok(input.checked === false, "input.checked = " + input.checked);
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149

    input.setAttribute("Checked", 1, 0);
    ok(input.checked === true, "input.checked = " + input.checked);
    ok(!("Checked" in input), "Checked added to input");

    input.setAttribute("checked", 0, 0);
    input.setAttribute("Checked", 1, 1);
    ok(input.checked === false, "input.checked = " + input.checked);
    ok("Checked" in input, "checked not added to input");
    ok(input.Checked === 1, "input.Checked = " + input.Checked);

    input.removeAttribute("Checked", 1);
    ok(!("Checked" in input), "Checked is still in input");
    ok(input.checked === false, "input.checked = " + input.checked);

    input.setAttribute("checked", 1, 0);
    input.setAttribute("Checked", 0);
    ok(input.checked === true, "input.checked = " + input.checked);
    ok("Checked" in input, "checked not added to input");
    ok(input.Checked === 0, "input.Checked = " + input.Checked);

    input.setAttribute("Checked", 2, 2);
    ok(input.Checked === 0, "input.Checked = " + input.Checked);
    input.setAttribute("Checked", 3, 3);
    ok(input.Checked === 3, "input.Checked = " + input.Checked);

    x = input.getAttribute("style");
    ok(x === s, "getAttribute('style') = " + x);
    ok(s.cssText === "", "s.cssText = " + s.cssText);
150 151
    x = input.getAttribute("style", 2);
    ok(x === "", "getAttribute('style') = " + x);
152 153 154 155 156 157

    input.setAttribute("style", "display: none");
    x = input.getAttribute("style");
    ok(x === s, "getAttribute('style') = " + x);
    ok(s.cssText === "", "s.cssText = " + s.cssText);
    ok(s.display === "", "s.display = " + s.display);
158 159
    x = input.getAttribute("style", 2);
    ok(x === "", "getAttribute('style') = " + x);
160 161 162 163 164 165 166 167 168

    s.display = "none";
    ok(s.cssText != "", "s.cssText = " + s.cssText);
    ok(s.display === "none", "s.display = " + s.display);
    input.setAttribute("style", "");
    x = input.getAttribute("style");
    ok(x === s, "getAttribute('style') = " + x);
    ok(s.cssText != "", "s.cssText = " + s.cssText);
    ok(s.display === "none", "s.display = " + s.display);
169 170
    x = input.getAttribute("style", 2);
    ok(x === "", "getAttribute('style') = " + x);
171 172 173 174 175 176 177 178 179 180

    input.setAttribute("style", null);
    x = input.getAttribute("style");
    ok(input.style === s, "input.style = " + input.style);
    ok(x === s, "getAttribute('style') = " + x);
    ok(s.cssText != "", "s.cssText = " + s.cssText);
    ok(s.display === "none", "s.display = " + s.display);

    x = input.getAttribute("fireEvent");
    ok(x === input.fireEvent, "input.getAttribute('fireEvent') = " + x);
181 182
    x = input.getAttribute("fireEvent", 2);
    ok(x === "", "getAttribute('fireEvent') = " + x);
183 184 185 186 187

    input.setAttribute("fireEvent", 3);
    ok(input.fireEvent === 3, "input.fireEvent = " + input.fireEvent);
    x = input.getAttribute("fireEvent");
    ok(x === 3, "input.getAttribute('fireEvent') = " + x);
188 189
    x = input.getAttribute("fireEvent", 2);
    ok(x === "3", "getAttribute('fireEvent') = " + x);
190 191 192 193 194 195 196 197

    b = input.removeAttribute("style");
    ok(b === true, "removeAttribute('style') failed");
    ok(input.style === s, "input.style = " + input.style);
    x = input.getAttribute("style");
    ok(x === s, "getAttribute('style') = " + x);
    ok(s.display === "", "s.display = " + s.display);
    ok(s.cssText === "", "s.cssText = " + s.cssText);
198 199
    x = input.getAttribute("style", 2);
    ok(x === "", "getAttribute('style') = " + x);
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
    b = input.removeAttribute("style");
    ok(b === true, "removeAttribute('style') failed");

    b = false;
    try {
        input.setAttribute("tagName", "xxx");
    }catch(e) {
        b = true;
    }
    ok(b, "Expected exception on setAttribute(tagName)");

    b = false;
    try {
        input.setAttribute("parentElement", "xxx");
    }catch(e) {
        b = true;
    }
    ok(b, "Expected exception on setAttribute(parentElement)");

    b = input.removeAttribute("fireEvent");
    ok(b === true, "removeAttribute(fireEvent) failed");
    ok(input.fireEvent === f, "input.fireEvent = " + input.fireEvent);
    x = input.getAttribute("fireEvent");
    ok(x === f, "input.getAttribute('fireEvent') = " + x);
    b = input.removeAttribute("fireEvent");
    ok(b === false || broken(b === true), "removeAttribute(fireEvent) returned " + b);

    input.fireEvent = 3;
    x = input.getAttribute("fireEvent");
    ok(x === 3, "input.getAttribute('fireEvent') = " + x);
    ok(input.fireEvent === 3, "input.fireEvent' = " + input.fireEvent);
231 232 233 234 235 236 237
}

function test_attribute_collection() {
    var div, attr;

    document.body.innerHTML = '<div id="divid" class="test"></div>';
    div = document.getElementById("divid");
238

239 240
    attr = div.attributes["dir"];
    ok(attr === div.attributes["dir"], "attr !== div.attributes['dir']");
241 242
}

243 244 245 246 247
function test_getter_call() {
    document.body.innerHTML = '<div id="divid"></div>';

    var e = document.getElementById("divid");

248
    e.myfunc = function(x) { this.myfunc_called = x; };
249
    e.myfunc("test");
250
    ok(e.myfunc_called === "test", "e.myfunc_called = " + e.myfunc_called);
251 252 253 254

    e.onmousedown = function(x) { this.onmousedown_called = x; };
    e.onmousedown("test");
    ok(e.onmousedown_called === "test", "e.onmousedown_called = " + e.onmousedown_called);
255 256

    ok(document.all("divid").tagName === "DIV", "document.all('divid').tagName = " + document.all("divid").tagName);
257 258
}

259 260 261 262 263 264 265
function test_arg_conv() {
    /* this call would throw if the argument wasn't converted by JScript */
    window.clearInterval("");

    navigator.javaEnabled();
}

266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
function test_override_functions() {
    function override_func() { return "test"; }

    ok(typeof(window.showModalDialog) === "object", "typeof(window.showModalDialog) = " + typeof(window.showModalDialog));
    window.showModalDialog = override_func;
    ok(window.showModalDialog === override_func, "window.showModalDialog != override_func");
    ok(typeof(window.showModalDialog) === "function", "typeof(window.showModalDialog) = " + typeof(window.showModalDialog));

    document.body.innerHTML = '<div id="divid"></div>';
    var div = document.getElementById("divid");
    ok(typeof(div.addBehavior) === "object", "typeof(div.addBehavior) = " + typeof(div.addBehavior));
    div.addBehavior = override_func;
    ok(div.addBehavior === override_func, "div.addBehavior != override_func");
    ok(typeof(div.addBehavior) === "function", "typeof(div.addBehavior) = " + typeof(div.addBehavior));

    var tmp = div.addBehavior();
    ok(tmp === "test", "div.addBehavior() = " + tmp);
283 284 285

    tmp = String(div.attachEvent);
    ok(tmp == "\nfunction attachEvent() {\n    [native code]\n}\n", "String(div.attachEvent) = " + tmp);
286 287
}

288 289 290 291 292 293 294 295 296 297 298 299
function test_forin() {
    var cnt=0;

    document.body.innerHTML = '<a id="aid"></a>';

    for(var x in document.getElementById("aid")) {
        cnt++;
    }

    ok(cnt > 100, "cnt = " + cnt);
}

300 301 302 303 304 305 306 307 308 309 310
function test_customtag() {
    document.body.innerHTML = 'test<unk><br>';

    var children = document.body.childNodes;

    ok(children.length === 3, "children.length = " + children.length);
    ok(children[0].data === "test", "children[0].data = " + children[0].data);
    ok(children[1].tagName === "UNK", "children[1].tagName = " + children[1].tagName);
    ok(children[2].tagName === "BR", "children[2].tagName = " + children[2].tagName);
}

311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332
function test_whitespace_nodes() {
    document.body.innerHTML = '<table id="tid"> <tr> \t<td>\n \t<div></div> </td>\n </tr> </table>';

    var t = document.getElementById("tid");
    ok(t.childNodes.length === 1, "t.childNodes.length = " + t.childNodes.length);
    ok(t.childNodes[0].tagName === "TBODY", "t.childNodes[0].tagName = " + t.childNodes[0].tagName);

    var row = t.rows[0];
    ok(row.childNodes.length === 1, "row.childNodes.length = " + row.childNodes.length);
    ok(row.childNodes[0].tagName === "TD", "row.childNodes[0].tagName = " + row.childNodes[0].tagName);

    var cell = row.cells[0];
    ok(cell.childNodes.length === 1, "cell.childNodes.length = " + cell.childNodes.length);


    document.body.innerHTML = '<table id="tid"> x<tr> \tx<td>\n \tx<div></div> </td>\n </tr> </table>';

    t = document.getElementById("tid");
    ok(t.rows[0].cells[0].childNodes.length === 2,
        "t.rows[0].cells[0].childNodes.length = " + t.rows[0].cells[0].childNodes.length);
}

333 334 335 336 337 338 339 340
function test_language_attribute() {
    document.body.innerHTML = '<div id="did" language="test"></div>';
    var elem = document.getElementById("did");
    ok(elem.language === "test", "elem.language = " + elem.language);
    elem.language = 1;
    ok(elem.language === "1", "elem.language = " + elem.language);
}

341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
function test_text_node() {
    document.body.innerHTML = 'testing text';
    var text = document.body.childNodes[0], text2;
    ok(text.data == "testing text", "text.data = " + text.data);

    text2 = text.splitText(7);
    ok(text.data == "testing", "text.data = " + text.data);
    ok(text2.data == " text", "text2.data = " + text2.data);
    ok(text.nextSibling === text2, "text.nextSibling !== text2");

    text2 = text.splitText(0);
    ok(text.data == "", "text.data = " + text.data);
    ok(text2.data == "testing", "text2.data = " + text2.data);
}

356 357
function test_xhr() {
    ok("XMLHttpRequest" in window, "XMLHttpRequest not found in window object\n");
358 359 360 361 362

    if (typeof(XMLHttpRequest) != "object") {
        win_skip("XMLHTTPRequest is not available or disabled");
        return;
    }
363 364 365 366 367

    var xhr = new XMLHttpRequest();
    ok(typeof(xhr) === "object", "typeof(xhr) = " + typeof(xhr));
}

368 369 370 371 372 373
function test_postMessage() {
    if(!("postMessage" in window)) {
        win_skip("postMessage not available");
        return;
    }

374 375 376 377 378 379 380 381
    var onmessage_called = false;
    window.onmessage = function() {
        onmessage_called = true;
    }
    window.postMessage("test", "*");
    ok(onmessage_called, "onmessage not called");
}

382 383
var globalVar = false;

384
function runTests() {
385 386 387 388 389
    obj = new Object();
    ok(obj === window.obj, "obj !== window.obj");

    ok(typeof(divid) === "object", "typeof(divid) = " + typeof(divid));

390 391
    test_removeAttribute(document.getElementById("divid"));
    test_removeAttribute(document.body);
392
    test_select_index();
393
    test_clone_node();
394
    test_createDocumentFragment();
395
    test_document_name_as_index();
396
    test_remove_style_attribute();
397
    test_getter_call();
398
    test_attrs();
399
    test_attribute_collection();
400
    test_arg_conv();
401
    test_override_functions();
402
    test_forin();
403
    test_customtag();
404
    test_whitespace_nodes();
405
    test_language_attribute();
406
    test_text_node();
407
    test_xhr();
408
    test_postMessage();
409

410 411 412
    var r = window.execScript("globalVar = true;");
    ok(r === undefined, "execScript returned " + r);
    ok(globalVar === true, "globalVar = " + globalVar);
413 414 415

    /* Call setTimeout without specified time. */
    window.setTimeout(function() { external.reportSuccess(); });
416 417 418 419 420 421
}

function runTest() {
    try {
        runTests();
    }catch(e) {
422
        ok(false, "got exception " + e.message);
423
    }
424 425 426 427
}
</script>
<body onload="runTest();">
<div id="divid"></div>
428 429 430 431
<select id="sel">
<option>opt1</option>
<option>opt2</option>
</select>
432 433
</body>
</html>