OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. |
6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) | 6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) |
7 * | 7 * |
8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
(...skipping 19 matching lines...) Expand all Loading... |
30 #include "bindings/v8/ScriptEventListener.h" | 30 #include "bindings/v8/ScriptEventListener.h" |
31 #include "core/HTMLNames.h" | 31 #include "core/HTMLNames.h" |
32 #include "core/dom/Attribute.h" | 32 #include "core/dom/Attribute.h" |
33 #include "core/dom/Document.h" | 33 #include "core/dom/Document.h" |
34 #include "core/dom/ElementTraversal.h" | 34 #include "core/dom/ElementTraversal.h" |
35 #include "core/dom/IdTargetObserverRegistry.h" | 35 #include "core/dom/IdTargetObserverRegistry.h" |
36 #include "core/events/AutocompleteErrorEvent.h" | 36 #include "core/events/AutocompleteErrorEvent.h" |
37 #include "core/events/Event.h" | 37 #include "core/events/Event.h" |
38 #include "core/events/GenericEventQueue.h" | 38 #include "core/events/GenericEventQueue.h" |
39 #include "core/events/ScopedEventQueue.h" | 39 #include "core/events/ScopedEventQueue.h" |
40 #include "core/frame/DOMWindow.h" | 40 #include "core/frame/LocalDOMWindow.h" |
41 #include "core/frame/LocalFrame.h" | 41 #include "core/frame/LocalFrame.h" |
42 #include "core/frame/UseCounter.h" | 42 #include "core/frame/UseCounter.h" |
43 #include "core/frame/csp/ContentSecurityPolicy.h" | 43 #include "core/frame/csp/ContentSecurityPolicy.h" |
44 #include "core/html/HTMLCollection.h" | 44 #include "core/html/HTMLCollection.h" |
45 #include "core/html/HTMLDialogElement.h" | 45 #include "core/html/HTMLDialogElement.h" |
46 #include "core/html/HTMLFormControlsCollection.h" | 46 #include "core/html/HTMLFormControlsCollection.h" |
47 #include "core/html/HTMLImageElement.h" | 47 #include "core/html/HTMLImageElement.h" |
48 #include "core/html/HTMLInputElement.h" | 48 #include "core/html/HTMLInputElement.h" |
49 #include "core/html/HTMLObjectElement.h" | 49 #include "core/html/HTMLObjectElement.h" |
50 #include "core/html/RadioNodeList.h" | 50 #include "core/html/RadioNodeList.h" |
(...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
395 | 395 |
396 if (protocolIsJavaScript(submission->action())) { | 396 if (protocolIsJavaScript(submission->action())) { |
397 if (!document().contentSecurityPolicy()->allowFormAction(submission->act
ion())) | 397 if (!document().contentSecurityPolicy()->allowFormAction(submission->act
ion())) |
398 return; | 398 return; |
399 document().frame()->script().executeScriptIfJavaScriptURL(submission->ac
tion()); | 399 document().frame()->script().executeScriptIfJavaScriptURL(submission->ac
tion()); |
400 return; | 400 return; |
401 } | 401 } |
402 | 402 |
403 LocalFrame* targetFrame = document().frame()->loader().findFrameForNavigatio
n(submission->target(), submission->state()->sourceDocument()); | 403 LocalFrame* targetFrame = document().frame()->loader().findFrameForNavigatio
n(submission->target(), submission->state()->sourceDocument()); |
404 if (!targetFrame) { | 404 if (!targetFrame) { |
405 if (!DOMWindow::allowPopUp(*document().frame()) && !UserGestureIndicator
::processingUserGesture()) | 405 if (!LocalDOMWindow::allowPopUp(*document().frame()) && !UserGestureIndi
cator::processingUserGesture()) |
406 return; | 406 return; |
407 targetFrame = document().frame(); | 407 targetFrame = document().frame(); |
408 } else { | 408 } else { |
409 submission->clearTarget(); | 409 submission->clearTarget(); |
410 } | 410 } |
411 if (!targetFrame->page()) | 411 if (!targetFrame->page()) |
412 return; | 412 return; |
413 | 413 |
414 if (MixedContentChecker::isMixedContent(document().securityOrigin(), submiss
ion->action())) { | 414 if (MixedContentChecker::isMixedContent(document().securityOrigin(), submiss
ion->action())) { |
415 UseCounter::count(document(), UseCounter::MixedContentFormsSubmitted); | 415 UseCounter::count(document(), UseCounter::MixedContentFormsSubmitted); |
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
799 } | 799 } |
800 | 800 |
801 void HTMLFormElement::setDemoted(bool demoted) | 801 void HTMLFormElement::setDemoted(bool demoted) |
802 { | 802 { |
803 if (demoted) | 803 if (demoted) |
804 UseCounter::count(document(), UseCounter::DemotedFormElement); | 804 UseCounter::count(document(), UseCounter::DemotedFormElement); |
805 m_wasDemoted = demoted; | 805 m_wasDemoted = demoted; |
806 } | 806 } |
807 | 807 |
808 } // namespace | 808 } // namespace |
OLD | NEW |