mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-04 21:52:44 +00:00

caps/idl/nsICertificatePrincipal.idl caps/idl/nsIPrincipal.idl caps/src/nsBasePrincipal.cpp Implement the ability to manipulate multiple capabilties simultaneously. r=mstoltz@netscape.com Files: caps/src/nsCodebasePrincipal.cpp Codebase equality should be based upon origin, not full path. r=mstoltz@netscape.com Files: caps/src/nsScriptSecurityManager.cpp Change URI checking to deny based upon scheme rather than allow based upon scheme for greater flexibility. r=mstoltz@netscape.com Files: dom/public/nsDOMPropEnums.h dom/public/nsDOMPropNames.h dom/src/base/nsGlobalWindow.cpp modules/libpref/src/init/all.js Fix bug 20469 Seeing JS functions and global variables from arbitrary host r=vidur@netscape.com Files: dom/src/base/nsJSUtils.cpp dom/src/base/nsJSUtils.h dom/src/base/nsJSEnvironment.cpp dom/tools/JSStubGen.cpp layout/base/src/nsDocument.cpp layout/html/content/src/nsGenericHTMLElement.cpp Improve performance by removing NS_WITH_SERVICE call for every DOM access. Propagate XPCOM failure codes out properly. r=vidur@netscape.com Files: layout/html/document/src/nsFrameFrame.cpp Fix 27387 Circumventing Same Origin security policy using setAttribute r=vidur@netscape.com
347 lines
9.6 KiB
C++
347 lines
9.6 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
/* AUTO-GENERATED. DO NOT EDIT!!! */
|
|
|
|
#include "jsapi.h"
|
|
#include "nsJSUtils.h"
|
|
#include "nsDOMError.h"
|
|
#include "nscore.h"
|
|
#include "nsIServiceManager.h"
|
|
#include "nsIScriptContext.h"
|
|
#include "nsIScriptSecurityManager.h"
|
|
#include "nsIJSScriptObject.h"
|
|
#include "nsIScriptObjectOwner.h"
|
|
#include "nsIScriptGlobalObject.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsDOMPropEnums.h"
|
|
#include "nsString.h"
|
|
#include "nsIDOMHTMLFrameSetElement.h"
|
|
|
|
|
|
static NS_DEFINE_IID(kIScriptObjectOwnerIID, NS_ISCRIPTOBJECTOWNER_IID);
|
|
static NS_DEFINE_IID(kIJSScriptObjectIID, NS_IJSSCRIPTOBJECT_IID);
|
|
static NS_DEFINE_IID(kIScriptGlobalObjectIID, NS_ISCRIPTGLOBALOBJECT_IID);
|
|
static NS_DEFINE_IID(kIHTMLFrameSetElementIID, NS_IDOMHTMLFRAMESETELEMENT_IID);
|
|
|
|
//
|
|
// HTMLFrameSetElement property ids
|
|
//
|
|
enum HTMLFrameSetElement_slots {
|
|
HTMLFRAMESETELEMENT_COLS = -1,
|
|
HTMLFRAMESETELEMENT_ROWS = -2
|
|
};
|
|
|
|
/***********************************************************************/
|
|
//
|
|
// HTMLFrameSetElement Properties Getter
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
GetHTMLFrameSetElementProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
|
|
{
|
|
nsIDOMHTMLFrameSetElement *a = (nsIDOMHTMLFrameSetElement*)nsJSUtils::nsGetNativeThis(cx, obj);
|
|
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
if (nsnull == a) {
|
|
return JS_TRUE;
|
|
}
|
|
|
|
nsresult rv = NS_OK;
|
|
if (JSVAL_IS_INT(id)) {
|
|
nsIScriptSecurityManager *secMan = nsJSUtils::nsGetSecurityManager(cx, obj);
|
|
if (!secMan)
|
|
return PR_FALSE;
|
|
switch(JSVAL_TO_INT(id)) {
|
|
case HTMLFRAMESETELEMENT_COLS:
|
|
{
|
|
rv = secMan->CheckScriptAccess(cx, obj, NS_DOM_PROP_HTMLFRAMESETELEMENT_COLS, PR_FALSE);
|
|
if (NS_SUCCEEDED(rv)) {
|
|
nsAutoString prop;
|
|
rv = a->GetCols(prop);
|
|
if (NS_SUCCEEDED(rv)) {
|
|
nsJSUtils::nsConvertStringToJSVal(prop, cx, vp);
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
case HTMLFRAMESETELEMENT_ROWS:
|
|
{
|
|
rv = secMan->CheckScriptAccess(cx, obj, NS_DOM_PROP_HTMLFRAMESETELEMENT_ROWS, PR_FALSE);
|
|
if (NS_SUCCEEDED(rv)) {
|
|
nsAutoString prop;
|
|
rv = a->GetRows(prop);
|
|
if (NS_SUCCEEDED(rv)) {
|
|
nsJSUtils::nsConvertStringToJSVal(prop, cx, vp);
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
default:
|
|
return nsJSUtils::nsCallJSScriptObjectGetProperty(a, cx, obj, id, vp);
|
|
}
|
|
}
|
|
else {
|
|
return nsJSUtils::nsCallJSScriptObjectGetProperty(a, cx, obj, id, vp);
|
|
}
|
|
|
|
if (NS_FAILED(rv))
|
|
return nsJSUtils::nsReportError(cx, obj, rv);
|
|
return PR_TRUE;
|
|
}
|
|
|
|
/***********************************************************************/
|
|
//
|
|
// HTMLFrameSetElement Properties Setter
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
SetHTMLFrameSetElementProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
|
|
{
|
|
nsIDOMHTMLFrameSetElement *a = (nsIDOMHTMLFrameSetElement*)nsJSUtils::nsGetNativeThis(cx, obj);
|
|
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
if (nsnull == a) {
|
|
return JS_TRUE;
|
|
}
|
|
|
|
nsresult rv = NS_OK;
|
|
if (JSVAL_IS_INT(id)) {
|
|
nsIScriptSecurityManager *secMan = nsJSUtils::nsGetSecurityManager(cx, obj);
|
|
if (!secMan)
|
|
return PR_FALSE;
|
|
switch(JSVAL_TO_INT(id)) {
|
|
case HTMLFRAMESETELEMENT_COLS:
|
|
{
|
|
rv = secMan->CheckScriptAccess(cx, obj, NS_DOM_PROP_HTMLFRAMESETELEMENT_COLS, PR_TRUE);
|
|
if (NS_SUCCEEDED(rv)) {
|
|
nsAutoString prop;
|
|
nsJSUtils::nsConvertJSValToString(prop, cx, *vp);
|
|
|
|
rv = a->SetCols(prop);
|
|
|
|
}
|
|
break;
|
|
}
|
|
case HTMLFRAMESETELEMENT_ROWS:
|
|
{
|
|
rv = secMan->CheckScriptAccess(cx, obj, NS_DOM_PROP_HTMLFRAMESETELEMENT_ROWS, PR_TRUE);
|
|
if (NS_SUCCEEDED(rv)) {
|
|
nsAutoString prop;
|
|
nsJSUtils::nsConvertJSValToString(prop, cx, *vp);
|
|
|
|
rv = a->SetRows(prop);
|
|
|
|
}
|
|
break;
|
|
}
|
|
default:
|
|
return nsJSUtils::nsCallJSScriptObjectSetProperty(a, cx, obj, id, vp);
|
|
}
|
|
}
|
|
else {
|
|
return nsJSUtils::nsCallJSScriptObjectSetProperty(a, cx, obj, id, vp);
|
|
}
|
|
|
|
if (NS_FAILED(rv))
|
|
return nsJSUtils::nsReportError(cx, obj, rv);
|
|
return PR_TRUE;
|
|
}
|
|
|
|
|
|
//
|
|
// HTMLFrameSetElement finalizer
|
|
//
|
|
PR_STATIC_CALLBACK(void)
|
|
FinalizeHTMLFrameSetElement(JSContext *cx, JSObject *obj)
|
|
{
|
|
nsJSUtils::nsGenericFinalize(cx, obj);
|
|
}
|
|
|
|
|
|
//
|
|
// HTMLFrameSetElement enumerate
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
EnumerateHTMLFrameSetElement(JSContext *cx, JSObject *obj)
|
|
{
|
|
return nsJSUtils::nsGenericEnumerate(cx, obj);
|
|
}
|
|
|
|
|
|
//
|
|
// HTMLFrameSetElement resolve
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
ResolveHTMLFrameSetElement(JSContext *cx, JSObject *obj, jsval id)
|
|
{
|
|
return nsJSUtils::nsGenericResolve(cx, obj, id);
|
|
}
|
|
|
|
|
|
/***********************************************************************/
|
|
//
|
|
// class for HTMLFrameSetElement
|
|
//
|
|
JSClass HTMLFrameSetElementClass = {
|
|
"HTMLFrameSetElement",
|
|
JSCLASS_HAS_PRIVATE | JSCLASS_PRIVATE_IS_NSISUPPORTS,
|
|
JS_PropertyStub,
|
|
JS_PropertyStub,
|
|
GetHTMLFrameSetElementProperty,
|
|
SetHTMLFrameSetElementProperty,
|
|
EnumerateHTMLFrameSetElement,
|
|
ResolveHTMLFrameSetElement,
|
|
JS_ConvertStub,
|
|
FinalizeHTMLFrameSetElement,
|
|
nsnull,
|
|
nsJSUtils::nsCheckAccess
|
|
};
|
|
|
|
|
|
//
|
|
// HTMLFrameSetElement class properties
|
|
//
|
|
static JSPropertySpec HTMLFrameSetElementProperties[] =
|
|
{
|
|
{"cols", HTMLFRAMESETELEMENT_COLS, JSPROP_ENUMERATE},
|
|
{"rows", HTMLFRAMESETELEMENT_ROWS, JSPROP_ENUMERATE},
|
|
{0}
|
|
};
|
|
|
|
|
|
//
|
|
// HTMLFrameSetElement class methods
|
|
//
|
|
static JSFunctionSpec HTMLFrameSetElementMethods[] =
|
|
{
|
|
{0}
|
|
};
|
|
|
|
|
|
//
|
|
// HTMLFrameSetElement constructor
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
HTMLFrameSetElement(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
return JS_FALSE;
|
|
}
|
|
|
|
|
|
//
|
|
// HTMLFrameSetElement class initialization
|
|
//
|
|
extern "C" NS_DOM nsresult NS_InitHTMLFrameSetElementClass(nsIScriptContext *aContext, void **aPrototype)
|
|
{
|
|
JSContext *jscontext = (JSContext *)aContext->GetNativeContext();
|
|
JSObject *proto = nsnull;
|
|
JSObject *constructor = nsnull;
|
|
JSObject *parent_proto = nsnull;
|
|
JSObject *global = JS_GetGlobalObject(jscontext);
|
|
jsval vp;
|
|
|
|
if ((PR_TRUE != JS_LookupProperty(jscontext, global, "HTMLFrameSetElement", &vp)) ||
|
|
!JSVAL_IS_OBJECT(vp) ||
|
|
((constructor = JSVAL_TO_OBJECT(vp)) == nsnull) ||
|
|
(PR_TRUE != JS_LookupProperty(jscontext, JSVAL_TO_OBJECT(vp), "prototype", &vp)) ||
|
|
!JSVAL_IS_OBJECT(vp)) {
|
|
|
|
if (NS_OK != NS_InitHTMLElementClass(aContext, (void **)&parent_proto)) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
proto = JS_InitClass(jscontext, // context
|
|
global, // global object
|
|
parent_proto, // parent proto
|
|
&HTMLFrameSetElementClass, // JSClass
|
|
HTMLFrameSetElement, // JSNative ctor
|
|
0, // ctor args
|
|
HTMLFrameSetElementProperties, // proto props
|
|
HTMLFrameSetElementMethods, // proto funcs
|
|
nsnull, // ctor props (static)
|
|
nsnull); // ctor funcs (static)
|
|
if (nsnull == proto) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
}
|
|
else if ((nsnull != constructor) && JSVAL_IS_OBJECT(vp)) {
|
|
proto = JSVAL_TO_OBJECT(vp);
|
|
}
|
|
else {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
if (aPrototype) {
|
|
*aPrototype = proto;
|
|
}
|
|
return NS_OK;
|
|
}
|
|
|
|
|
|
//
|
|
// Method for creating a new HTMLFrameSetElement JavaScript object
|
|
//
|
|
extern "C" NS_DOM nsresult NS_NewScriptHTMLFrameSetElement(nsIScriptContext *aContext, nsISupports *aSupports, nsISupports *aParent, void **aReturn)
|
|
{
|
|
NS_PRECONDITION(nsnull != aContext && nsnull != aSupports && nsnull != aReturn, "null argument to NS_NewScriptHTMLFrameSetElement");
|
|
JSObject *proto;
|
|
JSObject *parent;
|
|
nsIScriptObjectOwner *owner;
|
|
JSContext *jscontext = (JSContext *)aContext->GetNativeContext();
|
|
nsresult result = NS_OK;
|
|
nsIDOMHTMLFrameSetElement *aHTMLFrameSetElement;
|
|
|
|
if (nsnull == aParent) {
|
|
parent = nsnull;
|
|
}
|
|
else if (NS_OK == aParent->QueryInterface(kIScriptObjectOwnerIID, (void**)&owner)) {
|
|
if (NS_OK != owner->GetScriptObject(aContext, (void **)&parent)) {
|
|
NS_RELEASE(owner);
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
NS_RELEASE(owner);
|
|
}
|
|
else {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
if (NS_OK != NS_InitHTMLFrameSetElementClass(aContext, (void **)&proto)) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
result = aSupports->QueryInterface(kIHTMLFrameSetElementIID, (void **)&aHTMLFrameSetElement);
|
|
if (NS_OK != result) {
|
|
return result;
|
|
}
|
|
|
|
// create a js object for this class
|
|
*aReturn = JS_NewObject(jscontext, &HTMLFrameSetElementClass, proto, parent);
|
|
if (nsnull != *aReturn) {
|
|
// connect the native object to the js object
|
|
JS_SetPrivate(jscontext, (JSObject *)*aReturn, aHTMLFrameSetElement);
|
|
}
|
|
else {
|
|
NS_RELEASE(aHTMLFrameSetElement);
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|