Changeset 188254 in webkit
- Timestamp:
- Aug 11, 2015, 7:56:37 AM (10 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 19 edited
-
ChangeLog (modified) (1 diff)
-
bindings/scripts/test/JS/JSTestActiveDOMObject.cpp (modified) (1 diff)
-
bindings/scripts/test/JS/JSTestCustomConstructorWithNoInterfaceObject.cpp (modified) (1 diff)
-
bindings/scripts/test/JS/JSTestCustomNamedGetter.cpp (modified) (1 diff)
-
bindings/scripts/test/JS/JSTestEventConstructor.cpp (modified) (1 diff)
-
bindings/scripts/test/JS/JSTestEventTarget.cpp (modified) (1 diff)
-
bindings/scripts/test/JS/JSTestException.cpp (modified) (1 diff)
-
bindings/scripts/test/JS/JSTestGenerateIsReachable.cpp (modified) (1 diff)
-
bindings/scripts/test/JS/JSTestInterface.cpp (modified) (1 diff)
-
bindings/scripts/test/JS/JSTestMediaQueryListListener.cpp (modified) (1 diff)
-
bindings/scripts/test/JS/JSTestNamedConstructor.cpp (modified) (2 diffs)
-
bindings/scripts/test/JS/JSTestNode.cpp (modified) (1 diff)
-
bindings/scripts/test/JS/JSTestNondeterministic.cpp (modified) (1 diff)
-
bindings/scripts/test/JS/JSTestObj.cpp (modified) (1 diff)
-
bindings/scripts/test/JS/JSTestOverloadedConstructors.cpp (modified) (1 diff)
-
bindings/scripts/test/JS/JSTestSerializedScriptValueInterface.cpp (modified) (1 diff)
-
bindings/scripts/test/JS/JSTestTypedefs.cpp (modified) (1 diff)
-
bindings/scripts/test/JS/JSattribute.cpp (modified) (1 diff)
-
bindings/scripts/test/JS/JSreadonly.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r188252 r188254 1 2015-08-11 Chris Dumez <cdumez@apple.com> 2 3 Unreviewed, rebaseline bindings tests after r188252. 4 5 * bindings/scripts/test/JS/JSTestActiveDOMObject.cpp: 6 (WebCore::JSTestActiveDOMObjectConstructor::finishCreation): 7 * bindings/scripts/test/JS/JSTestCustomConstructorWithNoInterfaceObject.cpp: 8 (WebCore::JSTestCustomConstructorWithNoInterfaceObjectConstructor::finishCreation): 9 * bindings/scripts/test/JS/JSTestCustomNamedGetter.cpp: 10 (WebCore::JSTestCustomNamedGetterConstructor::finishCreation): 11 * bindings/scripts/test/JS/JSTestEventConstructor.cpp: 12 (WebCore::JSTestEventConstructorConstructor::finishCreation): 13 * bindings/scripts/test/JS/JSTestEventTarget.cpp: 14 (WebCore::JSTestEventTargetConstructor::finishCreation): 15 * bindings/scripts/test/JS/JSTestException.cpp: 16 (WebCore::JSTestExceptionConstructor::finishCreation): 17 * bindings/scripts/test/JS/JSTestGenerateIsReachable.cpp: 18 (WebCore::JSTestGenerateIsReachableConstructor::finishCreation): 19 * bindings/scripts/test/JS/JSTestInterface.cpp: 20 (WebCore::JSTestInterfaceConstructor::finishCreation): 21 * bindings/scripts/test/JS/JSTestMediaQueryListListener.cpp: 22 (WebCore::JSTestMediaQueryListListenerConstructor::finishCreation): 23 * bindings/scripts/test/JS/JSTestNamedConstructor.cpp: 24 (WebCore::JSTestNamedConstructorConstructor::finishCreation): 25 (WebCore::JSTestNamedConstructorNamedConstructor::finishCreation): 26 * bindings/scripts/test/JS/JSTestNode.cpp: 27 (WebCore::JSTestNodeConstructor::finishCreation): 28 * bindings/scripts/test/JS/JSTestNondeterministic.cpp: 29 (WebCore::JSTestNondeterministicConstructor::finishCreation): 30 * bindings/scripts/test/JS/JSTestObj.cpp: 31 (WebCore::JSTestObjConstructor::finishCreation): 32 * bindings/scripts/test/JS/JSTestOverloadedConstructors.cpp: 33 (WebCore::JSTestOverloadedConstructorsConstructor::finishCreation): 34 * bindings/scripts/test/JS/JSTestSerializedScriptValueInterface.cpp: 35 (WebCore::JSTestSerializedScriptValueInterfaceConstructor::finishCreation): 36 * bindings/scripts/test/JS/JSTestTypedefs.cpp: 37 (WebCore::JSTestTypedefsConstructor::finishCreation): 38 * bindings/scripts/test/JS/JSattribute.cpp: 39 (WebCore::JSattributeConstructor::finishCreation): 40 * bindings/scripts/test/JS/JSreadonly.cpp: 41 (WebCore::JSreadonlyConstructor::finishCreation): 42 1 43 2015-08-10 Chris Dumez <cdumez@apple.com> 2 44 -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestActiveDOMObject.cpp
r185373 r188254 118 118 Base::finishCreation(vm); 119 119 ASSERT(inherits(info())); 120 putDirect(vm, vm.propertyNames->prototype, JSTestActiveDOMObject::getPrototype(vm, globalObject), DontDelete | ReadOnly );120 putDirect(vm, vm.propertyNames->prototype, JSTestActiveDOMObject::getPrototype(vm, globalObject), DontDelete | ReadOnly | DontEnum); 121 121 putDirect(vm, vm.propertyNames->length, jsNumber(0), ReadOnly | DontDelete | DontEnum); 122 122 } -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestCustomConstructorWithNoInterfaceObject.cpp
r184953 r188254 92 92 Base::finishCreation(vm); 93 93 ASSERT(inherits(info())); 94 putDirect(vm, vm.propertyNames->prototype, JSTestCustomConstructorWithNoInterfaceObject::getPrototype(vm, globalObject), DontDelete | ReadOnly );94 putDirect(vm, vm.propertyNames->prototype, JSTestCustomConstructorWithNoInterfaceObject::getPrototype(vm, globalObject), DontDelete | ReadOnly | DontEnum); 95 95 putDirect(vm, vm.propertyNames->length, jsNumber(0), ReadOnly | DontDelete | DontEnum); 96 96 } -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestCustomNamedGetter.cpp
r185373 r188254 112 112 Base::finishCreation(vm); 113 113 ASSERT(inherits(info())); 114 putDirect(vm, vm.propertyNames->prototype, JSTestCustomNamedGetter::getPrototype(vm, globalObject), DontDelete | ReadOnly );114 putDirect(vm, vm.propertyNames->prototype, JSTestCustomNamedGetter::getPrototype(vm, globalObject), DontDelete | ReadOnly | DontEnum); 115 115 putDirect(vm, vm.propertyNames->length, jsNumber(0), ReadOnly | DontDelete | DontEnum); 116 116 } -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestEventConstructor.cpp
r183523 r188254 139 139 Base::finishCreation(vm); 140 140 ASSERT(inherits(info())); 141 putDirect(vm, vm.propertyNames->prototype, JSTestEventConstructor::getPrototype(vm, globalObject), DontDelete | ReadOnly );141 putDirect(vm, vm.propertyNames->prototype, JSTestEventConstructor::getPrototype(vm, globalObject), DontDelete | ReadOnly | DontEnum); 142 142 putDirect(vm, vm.propertyNames->length, jsNumber(1), ReadOnly | DontDelete | DontEnum); 143 143 } -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestEventTarget.cpp
r185373 r188254 121 121 Base::finishCreation(vm); 122 122 ASSERT(inherits(info())); 123 putDirect(vm, vm.propertyNames->prototype, JSTestEventTarget::getPrototype(vm, globalObject), DontDelete | ReadOnly );123 putDirect(vm, vm.propertyNames->prototype, JSTestEventTarget::getPrototype(vm, globalObject), DontDelete | ReadOnly | DontEnum); 124 124 putDirect(vm, vm.propertyNames->length, jsNumber(0), ReadOnly | DontDelete | DontEnum); 125 125 } -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestException.cpp
r183523 r188254 109 109 Base::finishCreation(vm); 110 110 ASSERT(inherits(info())); 111 putDirect(vm, vm.propertyNames->prototype, JSTestException::getPrototype(vm, globalObject), DontDelete | ReadOnly );111 putDirect(vm, vm.propertyNames->prototype, JSTestException::getPrototype(vm, globalObject), DontDelete | ReadOnly | DontEnum); 112 112 putDirect(vm, vm.propertyNames->length, jsNumber(0), ReadOnly | DontDelete | DontEnum); 113 113 } -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestGenerateIsReachable.cpp
r185029 r188254 91 91 Base::finishCreation(vm); 92 92 ASSERT(inherits(info())); 93 putDirect(vm, vm.propertyNames->prototype, JSTestGenerateIsReachable::getPrototype(vm, globalObject), DontDelete | ReadOnly );93 putDirect(vm, vm.propertyNames->prototype, JSTestGenerateIsReachable::getPrototype(vm, globalObject), DontDelete | ReadOnly | DontEnum); 94 94 putDirect(vm, vm.propertyNames->length, jsNumber(0), ReadOnly | DontDelete | DontEnum); 95 95 } -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestInterface.cpp
r185373 r188254 301 301 Base::finishCreation(vm); 302 302 ASSERT(inherits(info())); 303 putDirect(vm, vm.propertyNames->prototype, JSTestInterface::getPrototype(vm, globalObject), DontDelete | ReadOnly );303 putDirect(vm, vm.propertyNames->prototype, JSTestInterface::getPrototype(vm, globalObject), DontDelete | ReadOnly | DontEnum); 304 304 putDirect(vm, vm.propertyNames->length, jsNumber(1), ReadOnly | DontDelete | DontEnum); 305 305 reifyStaticProperties(vm, JSTestInterfaceConstructorTableValues, *this); -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestMediaQueryListListener.cpp
r183523 r188254 98 98 Base::finishCreation(vm); 99 99 ASSERT(inherits(info())); 100 putDirect(vm, vm.propertyNames->prototype, JSTestMediaQueryListListener::getPrototype(vm, globalObject), DontDelete | ReadOnly );100 putDirect(vm, vm.propertyNames->prototype, JSTestMediaQueryListListener::getPrototype(vm, globalObject), DontDelete | ReadOnly | DontEnum); 101 101 putDirect(vm, vm.propertyNames->length, jsNumber(0), ReadOnly | DontDelete | DontEnum); 102 102 } -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestNamedConstructor.cpp
r185377 r188254 119 119 Base::finishCreation(vm); 120 120 ASSERT(inherits(info())); 121 putDirect(vm, vm.propertyNames->prototype, JSTestNamedConstructor::getPrototype(vm, globalObject), DontDelete | ReadOnly );121 putDirect(vm, vm.propertyNames->prototype, JSTestNamedConstructor::getPrototype(vm, globalObject), DontDelete | ReadOnly | DontEnum); 122 122 putDirect(vm, vm.propertyNames->length, jsNumber(0), ReadOnly | DontDelete | DontEnum); 123 123 } … … 157 157 Base::finishCreation(globalObject); 158 158 ASSERT(inherits(info())); 159 putDirect(vm, vm.propertyNames->prototype, JSTestNamedConstructor::getPrototype(vm, globalObject), None);159 putDirect(vm, vm.propertyNames->prototype, JSTestNamedConstructor::getPrototype(vm, globalObject), DontDelete | ReadOnly | DontEnum); 160 160 putDirect(vm, vm.propertyNames->length, jsNumber(0), ReadOnly | DontDelete | DontEnum); 161 161 } -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestNode.cpp
r181156 r188254 103 103 Base::finishCreation(vm); 104 104 ASSERT(inherits(info())); 105 putDirect(vm, vm.propertyNames->prototype, JSTestNode::getPrototype(vm, globalObject), DontDelete | ReadOnly );105 putDirect(vm, vm.propertyNames->prototype, JSTestNode::getPrototype(vm, globalObject), DontDelete | ReadOnly | DontEnum); 106 106 putDirect(vm, vm.propertyNames->length, jsNumber(0), ReadOnly | DontDelete | DontEnum); 107 107 } -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestNondeterministic.cpp
r185373 r188254 115 115 Base::finishCreation(vm); 116 116 ASSERT(inherits(info())); 117 putDirect(vm, vm.propertyNames->prototype, JSTestNondeterministic::getPrototype(vm, globalObject), DontDelete | ReadOnly );117 putDirect(vm, vm.propertyNames->prototype, JSTestNondeterministic::getPrototype(vm, globalObject), DontDelete | ReadOnly | DontEnum); 118 118 putDirect(vm, vm.propertyNames->length, jsNumber(0), ReadOnly | DontDelete | DontEnum); 119 119 } -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestObj.cpp
r188119 r188254 475 475 Base::finishCreation(vm); 476 476 ASSERT(inherits(info())); 477 putDirect(vm, vm.propertyNames->prototype, JSTestObj::getPrototype(vm, globalObject), DontDelete | ReadOnly );477 putDirect(vm, vm.propertyNames->prototype, JSTestObj::getPrototype(vm, globalObject), DontDelete | ReadOnly | DontEnum); 478 478 putDirect(vm, vm.propertyNames->length, jsNumber(1), ReadOnly | DontDelete | DontEnum); 479 479 reifyStaticProperties(vm, JSTestObjConstructorTableValues, *this); -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestOverloadedConstructors.cpp
r186275 r188254 179 179 Base::finishCreation(vm); 180 180 ASSERT(inherits(info())); 181 putDirect(vm, vm.propertyNames->prototype, JSTestOverloadedConstructors::getPrototype(vm, globalObject), DontDelete | ReadOnly );181 putDirect(vm, vm.propertyNames->prototype, JSTestOverloadedConstructors::getPrototype(vm, globalObject), DontDelete | ReadOnly | DontEnum); 182 182 putDirect(vm, vm.propertyNames->length, jsNumber(1), ReadOnly | DontDelete | DontEnum); 183 183 } -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestSerializedScriptValueInterface.cpp
r185373 r188254 106 106 Base::finishCreation(vm); 107 107 ASSERT(inherits(info())); 108 putDirect(vm, vm.propertyNames->prototype, JSTestSerializedScriptValueInterface::getPrototype(vm, globalObject), DontDelete | ReadOnly );108 putDirect(vm, vm.propertyNames->prototype, JSTestSerializedScriptValueInterface::getPrototype(vm, globalObject), DontDelete | ReadOnly | DontEnum); 109 109 putDirect(vm, vm.propertyNames->length, jsNumber(0), ReadOnly | DontDelete | DontEnum); 110 110 } -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestTypedefs.cpp
r185373 r188254 171 171 Base::finishCreation(vm); 172 172 ASSERT(inherits(info())); 173 putDirect(vm, vm.propertyNames->prototype, JSTestTypedefs::getPrototype(vm, globalObject), DontDelete | ReadOnly );173 putDirect(vm, vm.propertyNames->prototype, JSTestTypedefs::getPrototype(vm, globalObject), DontDelete | ReadOnly | DontEnum); 174 174 putDirect(vm, vm.propertyNames->length, jsNumber(2), ReadOnly | DontDelete | DontEnum); 175 175 reifyStaticProperties(vm, JSTestTypedefsConstructorTableValues, *this); -
trunk/Source/WebCore/bindings/scripts/test/JS/JSattribute.cpp
r183523 r188254 95 95 Base::finishCreation(vm); 96 96 ASSERT(inherits(info())); 97 putDirect(vm, vm.propertyNames->prototype, JSattribute::getPrototype(vm, globalObject), DontDelete | ReadOnly );97 putDirect(vm, vm.propertyNames->prototype, JSattribute::getPrototype(vm, globalObject), DontDelete | ReadOnly | DontEnum); 98 98 putDirect(vm, vm.propertyNames->length, jsNumber(0), ReadOnly | DontDelete | DontEnum); 99 99 } -
trunk/Source/WebCore/bindings/scripts/test/JS/JSreadonly.cpp
r183523 r188254 91 91 Base::finishCreation(vm); 92 92 ASSERT(inherits(info())); 93 putDirect(vm, vm.propertyNames->prototype, JSreadonly::getPrototype(vm, globalObject), DontDelete | ReadOnly );93 putDirect(vm, vm.propertyNames->prototype, JSreadonly::getPrototype(vm, globalObject), DontDelete | ReadOnly | DontEnum); 94 94 putDirect(vm, vm.propertyNames->length, jsNumber(0), ReadOnly | DontDelete | DontEnum); 95 95 }
Note:
See TracChangeset
for help on using the changeset viewer.