diff options
Diffstat (limited to 'fxjs/cjs_border.cpp')
-rw-r--r-- | fxjs/cjs_border.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/fxjs/cjs_border.cpp b/fxjs/cjs_border.cpp new file mode 100644 index 0000000000..24d50ffcad --- /dev/null +++ b/fxjs/cjs_border.cpp @@ -0,0 +1,24 @@ +// Copyright 2017 PDFium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com + +#include "fxjs/cjs_border.h" + +const JSConstSpec CJS_Border::ConstSpecs[] = { + {"s", JSConstSpec::String, 0, "solid"}, + {"b", JSConstSpec::String, 0, "beveled"}, + {"d", JSConstSpec::String, 0, "dashed"}, + {"i", JSConstSpec::String, 0, "inset"}, + {"u", JSConstSpec::String, 0, "underline"}, + {0, JSConstSpec::Number, 0, 0}}; + +int CJS_Border::ObjDefnID = -1; + +// static +void CJS_Border::DefineJSObjects(CFXJS_Engine* pEngine) { + ObjDefnID = + pEngine->DefineObj("border", FXJSOBJTYPE_STATIC, nullptr, nullptr); + DefineConsts(pEngine, ObjDefnID, ConstSpecs); +} |