Changeset 267495 in webkit
- Timestamp:
- Sep 23, 2020, 12:35:19 PM (6 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 3 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/js/script-tests/transform-stream.js (added)
-
LayoutTests/js/transform-stream-expected.txt (added)
-
LayoutTests/js/transform-stream.html (added)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/bindings/js/JSDOMBuiltinConstructorBase.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r267486 r267495 1 2020-09-23 Tadeu Zagallo <tzagallo@apple.com> 2 3 Missing scope release in JSDOMBuiltinConstructorBase 4 https://bugs.webkit.org/show_bug.cgi?id=216851 5 <rdar://problem/69144642> 6 7 Reviewed by Yusuke Suzuki. 8 9 * js/script-tests/transform-stream.js: Added. 10 * js/transform-stream-expected.txt: Added. 11 * js/transform-stream.html: Added. 12 1 13 2020-09-23 Chris Dumez <cdumez@apple.com> 2 14 -
trunk/Source/WebCore/ChangeLog
r267494 r267495 1 2020-09-23 Tadeu Zagallo <tzagallo@apple.com> 2 3 Missing scope release in JSDOMBuiltinConstructorBase 4 https://bugs.webkit.org/show_bug.cgi?id=216851 5 <rdar://problem/69144642> 6 7 Reviewed by Yusuke Suzuki. 8 9 In JSDOMBuiltinConstructorBase::callFunctionWithCurrentArguments, we should release the 10 ThrowScope before calling into JavaScript since we don't intend to handle the exception. 11 12 Test: js/transform-stream.html 13 14 * bindings/js/JSDOMBuiltinConstructorBase.cpp: 15 (WebCore::JSDOMBuiltinConstructorBase::callFunctionWithCurrentArguments): 16 1 17 2020-09-23 Zalan Bujtas <zalan@apple.com> 2 18 -
trunk/Source/WebCore/bindings/js/JSDOMBuiltinConstructorBase.cpp
r260744 r267495 43 43 return; 44 44 } 45 scope.release(); 45 46 JSC::call(&lexicalGlobalObject, &function, callData, &thisObject, arguments); 46 47 }
Note:
See TracChangeset
for help on using the changeset viewer.