Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(449)

Side by Side Diff: third_party/WebKit/WebCore/bindings/js/JSHTMLFormElementCustom.cpp

Issue 20076: WebKit merge 40500:40539 [WebKit side] (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 if (namedItems.size() > 1) 55 if (namedItems.size() > 1)
56 return new (exec) JSNamedNodesCollection(exec, namedItems); 56 return new (exec) JSNamedNodesCollection(exec, namedItems);
57 return jsUndefined(); 57 return jsUndefined();
58 } 58 }
59 59
60 JSValuePtr JSHTMLFormElement::submit(ExecState* exec, const ArgList&) 60 JSValuePtr JSHTMLFormElement::submit(ExecState* exec, const ArgList&)
61 { 61 {
62 Frame* activeFrame = asJSDOMWindow(exec->dynamicGlobalObject())->impl()->fra me(); 62 Frame* activeFrame = asJSDOMWindow(exec->dynamicGlobalObject())->impl()->fra me();
63 if (!activeFrame) 63 if (!activeFrame)
64 return jsUndefined(); 64 return jsUndefined();
65 static_cast<HTMLFormElement*>(impl())->submit(0, false, false, false); 65 static_cast<HTMLFormElement*>(impl())->submit(0, false, !activeFrame->script ()->anyPageIsProcessingUserGesture(), false);
66 return jsUndefined(); 66 return jsUndefined();
67 } 67 }
68 68
69 } 69 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698