1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 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 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 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 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330
|
/*
* Copyright (C) 2000 Harri Porten (porten@kde.org)
* Copyright (C) 2006 Jon Shier (jshier@iastate.edu)
* Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reseved.
* Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
* USA
*/
#include "config.h"
#include "JSDOMWindowBase.h"
#include "Base64.h"
#include "CString.h"
#include "Console.h"
#include "DOMWindow.h"
#include "Element.h"
#include "EventListener.h"
#include "EventNames.h"
#include "ExceptionCode.h"
#include "FloatRect.h"
#include "Frame.h"
#include "FrameLoadRequest.h"
#include "FrameLoader.h"
#include "FrameTree.h"
#include "GCController.h"
#include "HTMLDocument.h"
#include "JSAudioConstructor.h"
#include "JSDOMWindowCustom.h"
#include "JSEvent.h"
#include "JSHTMLCollection.h"
#include "JSHTMLOptionElementConstructor.h"
#include "JSImageConstructor.h"
#include "JSNode.h"
#include "JSXMLHttpRequestConstructor.h"
#include "Logging.h"
#include "MediaPlayer.h"
#include "Page.h"
#include "PausedTimeouts.h"
#include "PlatformScreen.h"
#include "PluginInfoStore.h"
#include "RenderView.h"
#include "ScheduledAction.h"
#include "SecurityOrigin.h"
#include "Settings.h"
#include "WindowFeatures.h"
#include "htmlediting.h"
#include "kjs_events.h"
#include "ScriptController.h"
#include <wtf/AlwaysInline.h>
#include <wtf/MathExtras.h>
#if ENABLE(XSLT)
#include "JSXSLTProcessorConstructor.h"
#endif
#include "JSDOMWindowBase.lut.h"
using namespace KJS;
namespace WebCore {
using namespace EventNames;
static int lastUsedTimeoutId;
static int timerNestingLevel = 0;
const int cMaxTimerNestingLevel = 5;
const double cMinimumTimerInterval = 0.010;
class DOMWindowTimer : public TimerBase {
public:
DOMWindowTimer(int timeoutId, int nestingLevel, JSDOMWindowBase* object, ScheduledAction* action)
: m_timeoutId(timeoutId)
, m_nestingLevel(nestingLevel)
, m_object(object)
, m_action(action)
{
}
virtual ~DOMWindowTimer()
{
JSLock lock;
delete m_action;
}
int timeoutId() const { return m_timeoutId; }
int nestingLevel() const { return m_nestingLevel; }
void setNestingLevel(int n) { m_nestingLevel = n; }
ScheduledAction* action() const { return m_action; }
ScheduledAction* takeAction() { ScheduledAction* a = m_action; m_action = 0; return a; }
private:
virtual void fired();
int m_timeoutId;
int m_nestingLevel;
JSDOMWindowBase* m_object;
ScheduledAction* m_action;
};
////////////////////// JSDOMWindowBase Object ////////////////////////
const ClassInfo JSDOMWindowBase::s_info = { "Window", 0, &JSDOMWindowBaseTable, 0 };
/*
@begin JSDOMWindowBaseTable 118
# -- Functions --
atob WebCore::windowProtoFuncAToB DontDelete|Function 1
btoa WebCore::windowProtoFuncBToA DontDelete|Function 1
open WebCore::windowProtoFuncOpen DontDelete|Function 3
setTimeout WebCore::windowProtoFuncSetTimeout DontDelete|Function 2
clearTimeout WebCore::windowProtoFuncClearTimeout DontDelete|Function 1
setInterval WebCore::windowProtoFuncSetInterval DontDelete|Function 2
clearInterval WebCore::windowProtoFuncClearTimeout DontDelete|Function 1
addEventListener WebCore::windowProtoFuncAddEventListener DontDelete|Function 3
removeEventListener WebCore::windowProtoFuncRemoveEventListener DontDelete|Function 3
showModalDialog WebCore::windowProtoFuncShowModalDialog DontDelete|Function 1
# Not implemented
captureEvents WebCore::windowProtoFuncNotImplemented DontDelete|Function 0
releaseEvents WebCore::windowProtoFuncNotImplemented DontDelete|Function 0
# -- Attributes --
crypto WebCore::JSDOMWindowBase::Crypto DontDelete|ReadOnly
event WebCore::JSDOMWindowBase::Event_ DontDelete
# -- Event Listeners --
onabort WebCore::JSDOMWindowBase::Onabort DontDelete
onblur WebCore::JSDOMWindowBase::Onblur DontDelete
onchange WebCore::JSDOMWindowBase::Onchange DontDelete
onclick WebCore::JSDOMWindowBase::Onclick DontDelete
ondblclick WebCore::JSDOMWindowBase::Ondblclick DontDelete
onerror WebCore::JSDOMWindowBase::Onerror DontDelete
onfocus WebCore::JSDOMWindowBase::Onfocus DontDelete
onkeydown WebCore::JSDOMWindowBase::Onkeydown DontDelete
onkeypress WebCore::JSDOMWindowBase::Onkeypress DontDelete
onkeyup WebCore::JSDOMWindowBase::Onkeyup DontDelete
onload WebCore::JSDOMWindowBase::Onload DontDelete
onmousedown WebCore::JSDOMWindowBase::Onmousedown DontDelete
onmousemove WebCore::JSDOMWindowBase::Onmousemove DontDelete
onmouseout WebCore::JSDOMWindowBase::Onmouseout DontDelete
onmouseover WebCore::JSDOMWindowBase::Onmouseover DontDelete
onmouseup WebCore::JSDOMWindowBase::Onmouseup DontDelete
onmousewheel WebCore::JSDOMWindowBase::OnWindowMouseWheel DontDelete
onreset WebCore::JSDOMWindowBase::Onreset DontDelete
onresize WebCore::JSDOMWindowBase::Onresize DontDelete
onscroll WebCore::JSDOMWindowBase::Onscroll DontDelete
onsearch WebCore::JSDOMWindowBase::Onsearch DontDelete
onselect WebCore::JSDOMWindowBase::Onselect DontDelete
onsubmit WebCore::JSDOMWindowBase::Onsubmit DontDelete
onunload WebCore::JSDOMWindowBase::Onunload DontDelete
onbeforeunload WebCore::JSDOMWindowBase::Onbeforeunload DontDelete
# -- Constructors --
Audio WebCore::JSDOMWindowBase::Audio DontDelete
Image WebCore::JSDOMWindowBase::Image DontDelete
Option WebCore::JSDOMWindowBase::Option DontDelete
XMLHttpRequest WebCore::JSDOMWindowBase::XMLHttpRequest DontDelete
XSLTProcessor WebCore::JSDOMWindowBase::XSLTProcessor DontDelete
@end
*/
JSDOMWindowBase::JSDOMWindowBase(JSObject* prototype, DOMWindow* window, JSDOMWindowShell* shell)
: JSGlobalObject(prototype, shell)
, m_impl(window)
, d(new JSDOMWindowBasePrivate(shell))
{
// JSDOMWindowBase destruction is not thread-safe because of
// the non-thread-safe WebCore structures it references.
Collector::collectOnMainThreadOnly(this);
// Time in milliseconds before the script timeout handler kicks in.
setTimeoutTime(10000);
GlobalPropertyInfo staticGlobals[] = {
GlobalPropertyInfo("document", jsNull(), DontDelete | ReadOnly),
GlobalPropertyInfo("window", d->m_shell, DontDelete | ReadOnly)
};
addStaticGlobals(staticGlobals, sizeof(staticGlobals) / sizeof(GlobalPropertyInfo));
}
void JSDOMWindowBase::updateDocument()
{
ASSERT(m_impl->document());
ExecState* exec = globalExec();
symbolTablePutWithAttributes("document", toJS(exec, m_impl->document()), DontDelete | ReadOnly);
}
JSDOMWindowBase::~JSDOMWindowBase()
{
clearAllTimeouts();
// Clear any backpointers to the window
ListenersMap::iterator i2 = d->jsEventListeners.begin();
ListenersMap::iterator e2 = d->jsEventListeners.end();
for (; i2 != e2; ++i2)
i2->second->clearWindow();
i2 = d->jsHTMLEventListeners.begin();
e2 = d->jsHTMLEventListeners.end();
for (; i2 != e2; ++i2)
i2->second->clearWindow();
UnprotectedListenersMap::iterator i1 = d->jsUnprotectedEventListeners.begin();
UnprotectedListenersMap::iterator e1 = d->jsUnprotectedEventListeners.end();
for (; i1 != e1; ++i1)
i1->second->clearWindow();
i1 = d->jsUnprotectedHTMLEventListeners.begin();
e1 = d->jsUnprotectedHTMLEventListeners.end();
for (; i1 != e1; ++i1)
i1->second->clearWindow();
}
static bool allowPopUp(ExecState* exec)
{
Frame* frame = asJSDOMWindow(exec->dynamicGlobalObject())->impl()->frame();
ASSERT(frame);
if (frame->scriptProxy()->processingUserGesture())
return true;
Settings* settings = frame->settings();
return settings && settings->JavaScriptCanOpenWindowsAutomatically();
}
static HashMap<String, String> parseModalDialogFeatures(const String& featuresArg)
{
HashMap<String, String> map;
Vector<String> features;
featuresArg.split(';', features);
Vector<String>::const_iterator end = features.end();
for (Vector<String>::const_iterator it = features.begin(); it != end; ++it) {
String s = *it;
int pos = s.find('=');
int colonPos = s.find(':');
if (pos >= 0 && colonPos >= 0)
continue; // ignore any strings that have both = and :
if (pos < 0)
pos = colonPos;
if (pos < 0) {
// null string for value means key without value
map.set(s.stripWhiteSpace().lower(), String());
} else {
String key = s.left(pos).stripWhiteSpace().lower();
String val = s.substring(pos + 1).stripWhiteSpace().lower();
int spacePos = val.find(' ');
if (spacePos != -1)
val = val.left(spacePos);
map.set(key, val);
}
}
return map;
}
static Frame* createWindow(ExecState* exec, Frame* openerFrame, const String& url,
const String& frameName, const WindowFeatures& windowFeatures, JSValue* dialogArgs)
{
Frame* activeFrame = asJSDOMWindow(exec->dynamicGlobalObject())->impl()->frame();
ASSERT(activeFrame);
ResourceRequest request;
request.setHTTPReferrer(activeFrame->loader()->outgoingReferrer());
FrameLoadRequest frameRequest(request, frameName);
// FIXME: It's much better for client API if a new window starts with a URL, here where we
// know what URL we are going to open. Unfortunately, this code passes the empty string
// for the URL, but there's a reason for that. Before loading we have to set up the opener,
// openedByDOM, and dialogArguments values. Also, to decide whether to use the URL we currently
// do an allowsAccessFrom call using the window we create, which can't be done before creating it.
// We'd have to resolve all those issues to pass the URL instead of "".
bool created;
// We pass in the opener frame here so it can be used for looking up the frame name, in case the active frame
// is different from the opener frame, and the name references a frame relative to the opener frame, for example
// "_self" or "_parent".
Frame* newFrame = activeFrame->loader()->createWindow(openerFrame->loader(), frameRequest, windowFeatures, created);
if (!newFrame)
return 0;
newFrame->loader()->setOpener(openerFrame);
newFrame->loader()->setOpenedByDOM();
JSDOMWindow* newWindow = toJSDOMWindow(newFrame);
if (dialogArgs)
newWindow->putDirect("dialogArguments", dialogArgs);
if (!protocolIs(url, "javascript") || newWindow->allowsAccessFrom(exec)) {
KURL completedURL = url.isEmpty() ? KURL("") : activeFrame->document()->completeURL(url);
bool userGesture = activeFrame->scriptProxy()->processingUserGesture();
if (created)
newFrame->loader()->changeLocation(completedURL, activeFrame->loader()->outgoingReferrer(), false, userGesture);
else if (!url.isEmpty())
newFrame->loader()->scheduleLocationChange(completedURL.string(), activeFrame->loader()->outgoingReferrer(), false, userGesture);
}
return newFrame;
}
static bool canShowModalDialog(const Frame* frame)
{
if (!frame)
return false;
return frame->page()->chrome()->canRunModal();
}
static bool canShowModalDialogNow(const Frame* frame)
{
if (!frame)
return false;
return frame->page()->chrome()->canRunModalNow();
}
static JSValue* showModalDialog(ExecState* exec, Frame* frame, const String& url, JSValue* dialogArgs, const String& featureArgs)
{
if (!canShowModalDialogNow(frame) || !allowPopUp(exec))
return jsUndefined();
const HashMap<String, String> features = parseModalDialogFeatures(featureArgs);
const bool trusted = false;
// The following features from Microsoft's documentation are not implemented:
// - default font settings
// - width, height, left, and top specified in units other than "px"
// - edge (sunken or raised, default is raised)
// - dialogHide: trusted && boolFeature(features, "dialoghide"), makes dialog hide when you print
// - help: boolFeature(features, "help", true), makes help icon appear in dialog (what does it do on Windows?)
// - unadorned: trusted && boolFeature(features, "unadorned");
if (!frame)
return jsUndefined();
FloatRect screenRect = screenAvailableRect(frame->view());
WindowFeatures wargs;
wargs.width = WindowFeatures::floatFeature(features, "dialogwidth", 100, screenRect.width(), 620); // default here came from frame size of dialog in MacIE
wargs.widthSet = true;
wargs.height = WindowFeatures::floatFeature(features, "dialogheight", 100, screenRect.height(), 450); // default here came from frame size of dialog in MacIE
wargs.heightSet = true;
wargs.x = WindowFeatures::floatFeature(features, "dialogleft", screenRect.x(), screenRect.right() - wargs.width, -1);
wargs.xSet = wargs.x > 0;
wargs.y = WindowFeatures::floatFeature(features, "dialogtop", screenRect.y(), screenRect.bottom() - wargs.height, -1);
wargs.ySet = wargs.y > 0;
if (WindowFeatures::boolFeature(features, "center", true)) {
if (!wargs.xSet) {
wargs.x = screenRect.x() + (screenRect.width() - wargs.width) / 2;
wargs.xSet = true;
}
if (!wargs.ySet) {
wargs.y = screenRect.y() + (screenRect.height() - wargs.height) / 2;
wargs.ySet = true;
}
}
wargs.dialog = true;
wargs.resizable = WindowFeatures::boolFeature(features, "resizable");
wargs.scrollbarsVisible = WindowFeatures::boolFeature(features, "scroll", true);
wargs.statusBarVisible = WindowFeatures::boolFeature(features, "status", !trusted);
wargs.menuBarVisible = false;
wargs.toolBarVisible = false;
wargs.locationBarVisible = false;
wargs.fullscreen = false;
Frame* dialogFrame = createWindow(exec, frame, url, "", wargs, dialogArgs);
if (!dialogFrame)
return jsUndefined();
JSDOMWindow* dialogWindow = toJSDOMWindow(dialogFrame);
// Get the return value either just before clearing the dialog window's
// properties (in JSDOMWindowBase::clear), or when on return from runModal.
JSValue* returnValue = 0;
dialogWindow->setReturnValueSlot(&returnValue);
dialogFrame->page()->chrome()->runModal();
dialogWindow->setReturnValueSlot(0);
// If we don't have a return value, get it now.
// Either JSDOMWindowBase::clear was not called yet, or there was no return value,
// and in that case, there's no harm in trying again (no benefit either).
if (!returnValue)
returnValue = dialogWindow->getDirect("returnValue");
return returnValue ? returnValue : jsUndefined();
}
JSValue *JSDOMWindowBase::getValueProperty(ExecState *exec, int token) const
{
ASSERT(impl()->frame());
switch (token) {
case Crypto:
return jsUndefined(); // FIXME: implement this
case Event_:
if (!allowsAccessFrom(exec))
return jsUndefined();
if (!d->m_evt)
return jsUndefined();
return toJS(exec, d->m_evt);
case Image:
if (!allowsAccessFrom(exec))
return jsUndefined();
// FIXME: this property (and the few below) probably shouldn't create a new object every
// time
return new JSImageConstructor(exec, impl()->frame()->document());
case Option:
if (!allowsAccessFrom(exec))
return jsUndefined();
return new JSHTMLOptionElementConstructor(exec, impl()->frame()->document());
case XMLHttpRequest:
if (!allowsAccessFrom(exec))
return jsUndefined();
return new JSXMLHttpRequestConstructor(exec, impl()->frame()->document());
case Audio:
#if ENABLE(VIDEO)
if (!allowsAccessFrom(exec))
return jsUndefined();
if (!MediaPlayer::isAvailable())
return jsUndefined();
return new JSAudioConstructor(exec, impl()->frame()->document());
#else
return jsUndefined();
#endif
case XSLTProcessor:
#if ENABLE(XSLT)
if (!allowsAccessFrom(exec))
return jsUndefined();
return new JSXSLTProcessorConstructor(exec);
#else
return jsUndefined();
#endif
}
if (!allowsAccessFrom(exec))
return jsUndefined();
switch (token) {
case Onabort:
return getListener(exec, abortEvent);
case Onblur:
return getListener(exec, blurEvent);
case Onchange:
return getListener(exec, changeEvent);
case Onclick:
return getListener(exec, clickEvent);
case Ondblclick:
return getListener(exec, dblclickEvent);
case Onerror:
return getListener(exec, errorEvent);
case Onfocus:
return getListener(exec, focusEvent);
case Onkeydown:
return getListener(exec, keydownEvent);
case Onkeypress:
return getListener(exec, keypressEvent);
case Onkeyup:
return getListener(exec, keyupEvent);
case Onload:
return getListener(exec, loadEvent);
case Onmousedown:
return getListener(exec, mousedownEvent);
case Onmousemove:
return getListener(exec, mousemoveEvent);
case Onmouseout:
return getListener(exec, mouseoutEvent);
case Onmouseover:
return getListener(exec, mouseoverEvent);
case Onmouseup:
return getListener(exec, mouseupEvent);
case OnWindowMouseWheel:
return getListener(exec, mousewheelEvent);
case Onreset:
return getListener(exec, resetEvent);
case Onresize:
return getListener(exec,resizeEvent);
case Onscroll:
return getListener(exec,scrollEvent);
case Onsearch:
return getListener(exec,searchEvent);
case Onselect:
return getListener(exec,selectEvent);
case Onsubmit:
return getListener(exec,submitEvent);
case Onbeforeunload:
return getListener(exec, beforeunloadEvent);
case Onunload:
return getListener(exec, unloadEvent);
}
ASSERT_NOT_REACHED();
return jsUndefined();
}
JSValue* JSDOMWindowBase::childFrameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
{
return toJS(exec, static_cast<JSDOMWindowBase*>(slot.slotBase())->impl()->frame()->tree()->child(AtomicString(propertyName))->domWindow());
}
JSValue* JSDOMWindowBase::indexGetter(ExecState* exec, const Identifier&, const PropertySlot& slot)
{
return toJS(exec, static_cast<JSDOMWindowBase*>(slot.slotBase())->impl()->frame()->tree()->child(slot.index())->domWindow());
}
JSValue* JSDOMWindowBase::namedItemGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
{
JSDOMWindowBase* thisObj = static_cast<JSDOMWindowBase*>(slot.slotBase());
Document* doc = thisObj->impl()->frame()->document();
ASSERT(thisObj->allowsAccessFrom(exec));
ASSERT(doc);
ASSERT(doc->isHTMLDocument());
RefPtr<HTMLCollection> collection = doc->windowNamedItems(propertyName);
if (collection->length() == 1)
return toJS(exec, collection->firstItem());
return toJS(exec, collection.get());
}
bool JSDOMWindowBase::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
{
// Check for child frames by name before built-in properties to
// match Mozilla. This does not match IE, but some sites end up
// naming frames things that conflict with window properties that
// are in Moz but not IE. Since we have some of these, we have to do
// it the Moz way.
if (impl()->frame()->tree()->child(propertyName)) {
slot.setCustom(this, childFrameGetter);
return true;
}
const HashEntry* entry = JSDOMWindowBaseTable.entry(propertyName);
if (entry) {
if (entry->attributes & Function) {
if (entry->functionValue == windowProtoFuncShowModalDialog) {
if (!canShowModalDialog(impl()->frame()))
return false;
}
if (allowsAccessFrom(exec))
slot.setStaticEntry(this, entry, staticFunctionGetter);
else
slot.setUndefined();
} else
slot.setStaticEntry(this, entry, staticValueGetter<JSDOMWindowBase>);
return true;
}
// Do prototype lookup early so that functions and attributes in the prototype can have
// precedence over the index and name getters.
JSValue* proto = prototype();
if (proto->isObject()) {
if (static_cast<JSObject*>(proto)->getPropertySlot(exec, propertyName, slot)) {
if (!allowsAccessFrom(exec))
slot.setUndefined();
return true;
}
}
// FIXME: Search the whole frame hierachy somewhere around here.
// We need to test the correct priority order.
// allow window[1] or parent[1] etc. (#56983)
bool ok;
unsigned i = propertyName.toArrayIndex(&ok);
if (ok && i < impl()->frame()->tree()->childCount()) {
slot.setCustomIndex(this, i, indexGetter);
return true;
}
if (!allowsAccessFrom(exec)) {
slot.setUndefined();
return true;
}
// Allow shortcuts like 'Image1' instead of document.images.Image1
Document* document = impl()->frame()->document();
if (document && document->isHTMLDocument()) {
AtomicStringImpl* atomicPropertyName = AtomicString::find(propertyName);
if (atomicPropertyName && (static_cast<HTMLDocument*>(document)->hasNamedItem(atomicPropertyName) || document->hasElementWithId(atomicPropertyName))) {
slot.setCustom(this, namedItemGetter);
return true;
}
}
return Base::getOwnPropertySlot(exec, propertyName, slot);
}
void JSDOMWindowBase::put(ExecState* exec, const Identifier& propertyName, JSValue* value)
{
const HashEntry* entry = JSDOMWindowBaseTable.entry(propertyName);
if (entry) {
if (entry->attributes & Function) {
if (allowsAccessFrom(exec))
Base::put(exec, propertyName, value);
return;
}
if (entry->attributes & ReadOnly)
return;
switch (entry->integerValue) {
case Onabort:
if (allowsAccessFrom(exec))
setListener(exec, abortEvent,value);
return;
case Onblur:
if (allowsAccessFrom(exec))
setListener(exec, blurEvent,value);
return;
case Onchange:
if (allowsAccessFrom(exec))
setListener(exec, changeEvent,value);
return;
case Onclick:
if (allowsAccessFrom(exec))
setListener(exec,clickEvent,value);
return;
case Ondblclick:
if (allowsAccessFrom(exec))
setListener(exec, dblclickEvent,value);
return;
case Onerror:
if (allowsAccessFrom(exec))
setListener(exec, errorEvent, value);
return;
case Onfocus:
if (allowsAccessFrom(exec))
setListener(exec,focusEvent,value);
return;
case Onkeydown:
if (allowsAccessFrom(exec))
setListener(exec,keydownEvent,value);
return;
case Onkeypress:
if (allowsAccessFrom(exec))
setListener(exec,keypressEvent,value);
return;
case Onkeyup:
if (allowsAccessFrom(exec))
setListener(exec,keyupEvent,value);
return;
case Onload:
if (allowsAccessFrom(exec))
setListener(exec,loadEvent,value);
return;
case Onmousedown:
if (allowsAccessFrom(exec))
setListener(exec,mousedownEvent,value);
return;
case Onmousemove:
if (allowsAccessFrom(exec))
setListener(exec,mousemoveEvent,value);
return;
case Onmouseout:
if (allowsAccessFrom(exec))
setListener(exec,mouseoutEvent,value);
return;
case Onmouseover:
if (allowsAccessFrom(exec))
setListener(exec,mouseoverEvent,value);
return;
case Onmouseup:
if (allowsAccessFrom(exec))
setListener(exec,mouseupEvent,value);
return;
case OnWindowMouseWheel:
if (allowsAccessFrom(exec))
setListener(exec, mousewheelEvent,value);
return;
case Onreset:
if (allowsAccessFrom(exec))
setListener(exec,resetEvent,value);
return;
case Onresize:
if (allowsAccessFrom(exec))
setListener(exec,resizeEvent,value);
return;
case Onscroll:
if (allowsAccessFrom(exec))
setListener(exec,scrollEvent,value);
return;
case Onsearch:
if (allowsAccessFrom(exec))
setListener(exec,searchEvent,value);
return;
case Onselect:
if (allowsAccessFrom(exec))
setListener(exec,selectEvent,value);
return;
case Onsubmit:
if (allowsAccessFrom(exec))
setListener(exec,submitEvent,value);
return;
case Onbeforeunload:
if (allowsAccessFrom(exec))
setListener(exec, beforeunloadEvent, value);
return;
case Onunload:
if (allowsAccessFrom(exec))
setListener(exec, unloadEvent, value);
return;
default:
break;
}
}
if (allowsAccessFrom(exec))
Base::put(exec, propertyName, value);
}
String JSDOMWindowBase::crossDomainAccessErrorMessage(const JSGlobalObject* other) const
{
KURL originURL = asJSDOMWindow(other)->impl()->url();
KURL targetURL = impl()->frame()->document()->url();
if (originURL.isNull() || targetURL.isNull())
return String();
// FIXME: this error message should contain more specifics of why the same origin check has failed.
return String::format("Unsafe JavaScript attempt to access frame with URL %s from frame with URL %s. Domains, protocols and ports must match.\n",
targetURL.string().utf8().data(), originURL.string().utf8().data());
}
void JSDOMWindowBase::printErrorMessage(const String& message) const
{
if (message.isEmpty())
return;
Frame* frame = impl()->frame();
if (!frame)
return;
Settings* settings = frame->settings();
if (!settings)
return;
if (settings->privateBrowsingEnabled())
return;
impl()->console()->addMessage(JSMessageSource, ErrorMessageLevel, message, 1, String()); // FIXME: provide a real line number and source URL.
}
ExecState* JSDOMWindowBase::globalExec()
{
// We need to make sure that any script execution happening in this
// frame does not destroy it
ASSERT(impl()->frame());
impl()->frame()->keepAlive();
return Base::globalExec();
}
bool JSDOMWindowBase::shouldInterruptScript() const
{
ASSERT(impl()->frame());
Page* page = impl()->frame()->page();
// See <rdar://problem/5479443>. We don't think that page can ever be NULL
// in this case, but if it is, we've gotten into a state where we may have
// hung the UI, with no way to ask the client whether to cancel execution.
// For now, our solution is just to cancel execution no matter what,
// ensuring that we never hang. We might want to consider other solutions
// if we discover problems with this one.
ASSERT(page);
if (!page)
return true;
return page->chrome()->shouldInterruptJavaScript();
}
void JSDOMWindowBase::setListener(ExecState* exec, const AtomicString& eventType, JSValue* func)
{
ASSERT(impl()->frame());
Document* doc = impl()->frame()->document();
if (!doc)
return;
doc->setHTMLWindowEventListener(eventType, findOrCreateJSEventListener(func, true));
}
JSValue* JSDOMWindowBase::getListener(ExecState* exec, const AtomicString& eventType) const
{
ASSERT(impl()->frame());
Document* doc = impl()->frame()->document();
if (!doc)
return jsUndefined();
EventListener* listener = doc->getHTMLWindowEventListener(eventType);
if (listener && static_cast<JSEventListener*>(listener)->listenerObj())
return static_cast<JSEventListener*>(listener)->listenerObj();
return jsNull();
}
JSEventListener* JSDOMWindowBase::findJSEventListener(JSValue* val, bool html)
{
if (!val->isObject())
return 0;
JSObject* object = static_cast<JSObject*>(val);
ListenersMap& listeners = html ? d->jsHTMLEventListeners : d->jsEventListeners;
return listeners.get(object);
}
PassRefPtr<JSEventListener> JSDOMWindowBase::findOrCreateJSEventListener(JSValue* val, bool html)
{
JSEventListener* listener = findJSEventListener(val, html);
if (listener)
return listener;
if (!val->isObject())
return 0;
JSObject* object = static_cast<JSObject*>(val);
// Note that the JSEventListener constructor adds it to our jsEventListeners list
return JSEventListener::create(object, static_cast<JSDOMWindow*>(this), html).get();
}
JSUnprotectedEventListener* JSDOMWindowBase::findJSUnprotectedEventListener(JSValue* val, bool html)
{
if (!val->isObject())
return 0;
JSObject* object = static_cast<JSObject*>(val);
UnprotectedListenersMap& listeners = html ? d->jsUnprotectedHTMLEventListeners : d->jsUnprotectedEventListeners;
return listeners.get(object);
}
PassRefPtr<JSUnprotectedEventListener> JSDOMWindowBase::findOrCreateJSUnprotectedEventListener(JSValue* val, bool html)
{
JSUnprotectedEventListener* listener = findJSUnprotectedEventListener(val, html);
if (listener)
return listener;
if (!val->isObject())
return 0;
JSObject* object = static_cast<JSObject*>(val);
// The JSUnprotectedEventListener constructor adds it to our jsUnprotectedEventListeners map.
return JSUnprotectedEventListener::create(object, static_cast<JSDOMWindow*>(this), html).get();
}
void JSDOMWindowBase::clearHelperObjectProperties()
{
d->m_evt = 0;
}
void JSDOMWindowBase::clear()
{
JSLock lock;
if (d->m_returnValueSlot && !*d->m_returnValueSlot)
*d->m_returnValueSlot = getDirect("returnValue");
clearAllTimeouts();
clearHelperObjectProperties();
}
void JSDOMWindowBase::setCurrentEvent(Event* evt)
{
d->m_evt = evt;
}
Event* JSDOMWindowBase::currentEvent()
{
return d->m_evt;
}
JSObject* JSDOMWindowBase::toThisObject(ExecState*) const
{
return shell();
}
JSDOMWindowShell* JSDOMWindowBase::shell() const
{
return d->m_shell;
}
JSValue* windowProtoFuncAToB(ExecState* exec, JSObject* thisObj, const List& args)
{
ASSERT(!thisObj->inherits(&JSDOMWindow::s_info));
if (!thisObj->inherits(&JSDOMWindowShell::s_info))
return throwError(exec, TypeError);
JSDOMWindow* window = static_cast<JSDOMWindowShell*>(thisObj)->window();
if (!window->allowsAccessFrom(exec))
return jsUndefined();
if (args.size() < 1)
return throwError(exec, SyntaxError, "Not enough arguments");
JSValue* v = args[0];
if (v->isNull())
return jsString();
UString s = v->toString(exec);
if (!s.is8Bit()) {
setDOMException(exec, INVALID_CHARACTER_ERR);
return jsUndefined();
}
Vector<char> in(s.size());
for (int i = 0; i < s.size(); ++i)
in[i] = static_cast<char>(s.data()[i]);
Vector<char> out;
if (!base64Decode(in, out))
return throwError(exec, GeneralError, "Cannot decode base64");
return jsString(String(out.data(), out.size()));
}
JSValue* windowProtoFuncBToA(ExecState* exec, JSObject* thisObj, const List& args)
{
ASSERT(!thisObj->inherits(&JSDOMWindow::s_info));
if (!thisObj->inherits(&JSDOMWindowShell::s_info))
return throwError(exec, TypeError);
JSDOMWindow* window = static_cast<JSDOMWindowShell*>(thisObj)->window();
if (!window->allowsAccessFrom(exec))
return jsUndefined();
if (args.size() < 1)
return throwError(exec, SyntaxError, "Not enough arguments");
JSValue* v = args[0];
if (v->isNull())
return jsString();
UString s = v->toString(exec);
if (!s.is8Bit()) {
setDOMException(exec, INVALID_CHARACTER_ERR);
return jsUndefined();
}
Vector<char> in(s.size());
for (int i = 0; i < s.size(); ++i)
in[i] = static_cast<char>(s.data()[i]);
Vector<char> out;
base64Encode(in, out);
return jsString(String(out.data(), out.size()));
}
JSValue* windowProtoFuncOpen(ExecState* exec, JSObject* thisObj, const List& args)
{
ASSERT(!thisObj->inherits(&JSDOMWindow::s_info));
if (!thisObj->inherits(&JSDOMWindowShell::s_info))
return throwError(exec, TypeError);
JSDOMWindow* window = static_cast<JSDOMWindowShell*>(thisObj)->window();
if (!window->allowsAccessFrom(exec))
return jsUndefined();
Frame* frame = window->impl()->frame();
if (!frame)
return jsUndefined();
Frame* activeFrame = asJSDOMWindow(exec->dynamicGlobalObject())->impl()->frame();
if (!activeFrame)
return jsUndefined();
Page* page = frame->page();
String urlString = valueToStringWithUndefinedOrNullCheck(exec, args[0]);
AtomicString frameName = args[1]->isUndefinedOrNull() ? "_blank" : AtomicString(args[1]->toString(exec));
// Because FrameTree::find() returns true for empty strings, we must check for empty framenames.
// Otherwise, illegitimate window.open() calls with no name will pass right through the popup blocker.
if (!allowPopUp(exec) && (frameName.isEmpty() || !frame->tree()->find(frameName)))
return jsUndefined();
// Get the target frame for the special cases of _top and _parent. In those
// cases, we can schedule a location change right now and return early.
bool topOrParent = false;
if (frameName == "_top") {
frame = frame->tree()->top();
topOrParent = true;
} else if (frameName == "_parent") {
if (Frame* parent = frame->tree()->parent())
frame = parent;
topOrParent = true;
}
if (topOrParent) {
if (!activeFrame->loader()->shouldAllowNavigation(frame))
return jsUndefined();
String completedURL;
if (!urlString.isEmpty())
completedURL = activeFrame->document()->completeURL(urlString).string();
const JSDOMWindow* targetedWindow = toJSDOMWindow(frame);
if (!completedURL.isEmpty() && (!protocolIs(completedURL, "javascript") || (targetedWindow && targetedWindow->allowsAccessFrom(exec)))) {
bool userGesture = activeFrame->scriptProxy()->processingUserGesture();
frame->loader()->scheduleLocationChange(completedURL, activeFrame->loader()->outgoingReferrer(), false, userGesture);
}
return toJS(exec, frame->domWindow());
}
// In the case of a named frame or a new window, we'll use the createWindow() helper
WindowFeatures windowFeatures(valueToStringWithUndefinedOrNullCheck(exec, args[2]));
FloatRect windowRect(windowFeatures.x, windowFeatures.y, windowFeatures.width, windowFeatures.height);
DOMWindow::adjustWindowRect(screenAvailableRect(page->mainFrame()->view()), windowRect, windowRect);
windowFeatures.x = windowRect.x();
windowFeatures.y = windowRect.y();
windowFeatures.height = windowRect.height();
windowFeatures.width = windowRect.width();
frame = createWindow(exec, frame, urlString, frameName, windowFeatures, 0);
if (!frame)
return jsUndefined();
return toJS(exec, frame->domWindow()); // global object
}
JSValue* windowProtoFuncSetTimeout(ExecState* exec, JSObject* thisObj, const List& args)
{
ASSERT(!thisObj->inherits(&JSDOMWindow::s_info));
if (!thisObj->inherits(&JSDOMWindowShell::s_info))
return throwError(exec, TypeError);
JSDOMWindow* window = static_cast<JSDOMWindowShell*>(thisObj)->window();
if (!window->allowsAccessFrom(exec))
return jsUndefined();
JSValue* v = args[0];
if (v->isString())
return jsNumber(window->installTimeout(v->toString(exec), args[1]->toInt32(exec), true /*single shot*/));
if (v->isObject() && static_cast<JSObject*>(v)->implementsCall()) {
List argsTail;
args.getSlice(2, argsTail);
return jsNumber(window->installTimeout(v, argsTail, args[1]->toInt32(exec), true /*single shot*/));
}
return jsUndefined();
}
JSValue* windowProtoFuncClearTimeout(ExecState* exec, JSObject* thisObj, const List& args)
{
// Also the implementation for window.clearInterval()
ASSERT(!thisObj->inherits(&JSDOMWindow::s_info));
if (!thisObj->inherits(&JSDOMWindowShell::s_info))
return throwError(exec, TypeError);
JSDOMWindow* window = static_cast<JSDOMWindowShell*>(thisObj)->window();
if (!window->allowsAccessFrom(exec))
return jsUndefined();
window->clearTimeout(args[0]->toInt32(exec));
return jsUndefined();
}
JSValue* windowProtoFuncSetInterval(ExecState* exec, JSObject* thisObj, const List& args)
{
ASSERT(!thisObj->inherits(&JSDOMWindow::s_info));
if (!thisObj->inherits(&JSDOMWindowShell::s_info))
return throwError(exec, TypeError);
JSDOMWindow* window = static_cast<JSDOMWindowShell*>(thisObj)->window();
if (!window->allowsAccessFrom(exec))
return jsUndefined();
if (args.size() >= 2) {
JSValue* v = args[0];
int delay = args[1]->toInt32(exec);
if (v->isString())
return jsNumber(window->installTimeout(v->toString(exec), delay, false));
if (v->isObject() && static_cast<JSObject*>(v)->implementsCall()) {
List argsTail;
args.getSlice(2, argsTail);
return jsNumber(window->installTimeout(v, argsTail, delay, false));
}
}
return jsUndefined();
}
JSValue* windowProtoFuncAddEventListener(ExecState* exec, JSObject* thisObj, const List& args)
{
ASSERT(!thisObj->inherits(&JSDOMWindow::s_info));
if (!thisObj->inherits(&JSDOMWindowShell::s_info))
return throwError(exec, TypeError);
JSDOMWindow* window = static_cast<JSDOMWindowShell*>(thisObj)->window();
if (!window->allowsAccessFrom(exec))
return jsUndefined();
Frame* frame = window->impl()->frame();
if (!frame)
return jsUndefined();
if (RefPtr<JSEventListener> listener = window->findOrCreateJSEventListener(args[1])) {
if (Document* doc = frame->document())
doc->addWindowEventListener(AtomicString(args[0]->toString(exec)), listener.release(), args[2]->toBoolean(exec));
}
return jsUndefined();
}
JSValue* windowProtoFuncRemoveEventListener(ExecState* exec, JSObject* thisObj, const List& args)
{
ASSERT(!thisObj->inherits(&JSDOMWindow::s_info));
if (!thisObj->inherits(&JSDOMWindowShell::s_info))
return throwError(exec, TypeError);
JSDOMWindow* window = static_cast<JSDOMWindowShell*>(thisObj)->window();
if (!window->allowsAccessFrom(exec))
return jsUndefined();
Frame* frame = window->impl()->frame();
if (!frame)
return jsUndefined();
if (JSEventListener* listener = window->findJSEventListener(args[1])) {
if (Document* doc = frame->document())
doc->removeWindowEventListener(AtomicString(args[0]->toString(exec)), listener, args[2]->toBoolean(exec));
}
return jsUndefined();
}
JSValue* windowProtoFuncShowModalDialog(ExecState* exec, JSObject* thisObj, const List& args)
{
ASSERT(!thisObj->inherits(&JSDOMWindow::s_info));
if (!thisObj->inherits(&JSDOMWindowShell::s_info))
return throwError(exec, TypeError);
JSDOMWindow* window = static_cast<JSDOMWindowShell*>(thisObj)->window();
if (!window->allowsAccessFrom(exec))
return jsUndefined();
Frame* frame = window->impl()->frame();
if (!frame)
return jsUndefined();
return showModalDialog(exec, frame, valueToStringWithUndefinedOrNullCheck(exec, args[0]), args[1], valueToStringWithUndefinedOrNullCheck(exec, args[2]));
}
JSValue* windowProtoFuncNotImplemented(ExecState* exec, JSObject* thisObj, const List& args)
{
ASSERT(!thisObj->inherits(&JSDOMWindow::s_info));
if (!thisObj->inherits(&JSDOMWindowShell::s_info))
return throwError(exec, TypeError);
return jsUndefined();
}
void JSDOMWindowBase::setReturnValueSlot(JSValue** slot)
{
d->m_returnValueSlot = slot;
}
////////////////////// timeouts ////////////////////////
void JSDOMWindowBase::clearAllTimeouts()
{
deleteAllValues(d->m_timeouts);
d->m_timeouts.clear();
}
int JSDOMWindowBase::installTimeout(ScheduledAction* a, int t, bool singleShot)
{
int timeoutId = ++lastUsedTimeoutId;
// avoid wraparound going negative on us
if (timeoutId <= 0)
timeoutId = 1;
int nestLevel = timerNestingLevel + 1;
DOMWindowTimer* timer = new DOMWindowTimer(timeoutId, nestLevel, this, a);
ASSERT(!d->m_timeouts.get(timeoutId));
d->m_timeouts.set(timeoutId, timer);
// Use a minimum interval of 10 ms to match other browsers, but only once we've
// nested enough to notice that we're repeating.
// Faster timers might be "better", but they're incompatible.
double interval = max(0.001, t * 0.001);
if (interval < cMinimumTimerInterval && nestLevel >= cMaxTimerNestingLevel)
interval = cMinimumTimerInterval;
if (singleShot)
timer->startOneShot(interval);
else
timer->startRepeating(interval);
return timeoutId;
}
int JSDOMWindowBase::installTimeout(const UString& handler, int t, bool singleShot)
{
return installTimeout(new ScheduledAction(handler), t, singleShot);
}
int JSDOMWindowBase::installTimeout(JSValue* func, const List& args, int t, bool singleShot)
{
return installTimeout(new ScheduledAction(func, args), t, singleShot);
}
PausedTimeouts* JSDOMWindowBase::pauseTimeouts()
{
size_t count = d->m_timeouts.size();
if (count == 0)
return 0;
PausedTimeout* t = new PausedTimeout [count];
PausedTimeouts* result = new PausedTimeouts(t, count);
JSDOMWindowBasePrivate::TimeoutsMap::iterator it = d->m_timeouts.begin();
for (size_t i = 0; i != count; ++i, ++it) {
int timeoutId = it->first;
DOMWindowTimer* timer = it->second;
t[i].timeoutId = timeoutId;
t[i].nestingLevel = timer->nestingLevel();
t[i].nextFireInterval = timer->nextFireInterval();
t[i].repeatInterval = timer->repeatInterval();
t[i].action = timer->takeAction();
}
ASSERT(it == d->m_timeouts.end());
deleteAllValues(d->m_timeouts);
d->m_timeouts.clear();
return result;
}
void JSDOMWindowBase::resumeTimeouts(PausedTimeouts* timeouts)
{
if (!timeouts)
return;
size_t count = timeouts->numTimeouts();
PausedTimeout* array = timeouts->takeTimeouts();
for (size_t i = 0; i != count; ++i) {
int timeoutId = array[i].timeoutId;
DOMWindowTimer* timer = new DOMWindowTimer(timeoutId, array[i].nestingLevel, this, array[i].action);
d->m_timeouts.set(timeoutId, timer);
timer->start(array[i].nextFireInterval, array[i].repeatInterval);
}
delete [] array;
}
void JSDOMWindowBase::clearTimeout(int timeoutId, bool delAction)
{
// timeout IDs have to be positive, and 0 and -1 are unsafe to
// even look up since they are the empty and deleted value
// respectively
if (timeoutId <= 0)
return;
delete d->m_timeouts.take(timeoutId);
}
void JSDOMWindowBase::timerFired(DOMWindowTimer* timer)
{
// Simple case for non-one-shot timers.
if (timer->isActive()) {
int timeoutId = timer->timeoutId();
timer->action()->execute(shell());
// The DOMWindowTimer object may have been deleted or replaced during execution,
// so we re-fetch it.
timer = d->m_timeouts.get(timeoutId);
if (!timer)
return;
if (timer->repeatInterval() && timer->repeatInterval() < cMinimumTimerInterval) {
timer->setNestingLevel(timer->nestingLevel() + 1);
if (timer->nestingLevel() >= cMaxTimerNestingLevel)
timer->augmentRepeatInterval(cMinimumTimerInterval - timer->repeatInterval());
}
return;
}
// Delete timer before executing the action for one-shot timers.
ScheduledAction* action = timer->takeAction();
d->m_timeouts.remove(timer->timeoutId());
delete timer;
action->execute(shell());
JSLock lock;
delete action;
}
void JSDOMWindowBase::disconnectFrame()
{
clearAllTimeouts();
}
JSDOMWindowBase::ListenersMap& JSDOMWindowBase::jsEventListeners()
{
return d->jsEventListeners;
}
JSDOMWindowBase::ListenersMap& JSDOMWindowBase::jsHTMLEventListeners()
{
return d->jsHTMLEventListeners;
}
JSDOMWindowBase::UnprotectedListenersMap& JSDOMWindowBase::jsUnprotectedEventListeners()
{
return d->jsUnprotectedEventListeners;
}
JSDOMWindowBase::UnprotectedListenersMap& JSDOMWindowBase::jsUnprotectedHTMLEventListeners()
{
return d->jsUnprotectedHTMLEventListeners;
}
void DOMWindowTimer::fired()
{
timerNestingLevel = m_nestingLevel;
m_object->timerFired(this);
timerNestingLevel = 0;
}
JSValue* toJS(ExecState*, DOMWindow* domWindow)
{
if (!domWindow)
return jsNull();
Frame* frame = domWindow->frame();
if (!frame)
return jsNull();
return frame->scriptProxy()->windowShell();
}
JSDOMWindow* toJSDOMWindow(Frame* frame)
{
if (!frame)
return 0;
return frame->scriptProxy()->windowShell()->window();
}
} // namespace WebCore
|