REGRESSION (r111416): fast/dom/prototype-inheritance-2.html is failing.
Patch by Vineet Chaudhary <rgf748@motorola.com> on 2012-03-21
Reviewed by Csaba Osztrogonác.
Source/WebCore:
No new tests.
* bindings/js/JSDOMBinding.h: Needs passing globalObject to constructArray().
(WebCore::jsArray):
LayoutTests:
* platform/mac/fast/dom/prototype-inheritance-2-expected.txt: Reverting test as it passes now.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@111520
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2012-03-21 Vineet Chaudhary <rgf748@motorola.com>
+
+ https://bugs.webkit.org/show_bug.cgi?id=81705
+ REGRESSION (r111416): fast/dom/prototype-inheritance-2.html is failing.
+
+ Reviewed by Csaba Osztrogonác.
+
+ * platform/mac/fast/dom/prototype-inheritance-2-expected.txt: Reverting test as it passes now.
+
2012-03-21 Kristóf Kosztyó <kkristof@inf.u-szeged.hu>
[Qt] Unreviewed gardening after r111477.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-FAIL Array from inner.document.forms.testForm.0.ownerDocument.defaultView.console.profiles
+PASS Array from inner.document.forms.testForm.0.ownerDocument.defaultView.console.profiles
PASS Attr from inner.document.forms.testForm.0.attributes.0
PASS AttrConstructor from inner.document.forms.testForm.0.attributes.0.constructor
PASS AttrPrototype from inner.document.forms.testForm.0.attributes.0.__proto__
+2012-03-21 Vineet Chaudhary <rgf748@motorola.com>
+
+ https://bugs.webkit.org/show_bug.cgi?id=81705
+ REGRESSION (r111416): fast/dom/prototype-inheritance-2.html is failing.
+
+ Reviewed by Csaba Osztrogonác.
+
+ No new tests.
+
+ * bindings/js/JSDOMBinding.h: Needs passing globalObject to constructArray().
+ (WebCore::jsArray):
+
2012-03-21 Jonathan Dong <jonathan.dong@torchmobile.com.cn>
[BlackBerry] Upstreaming blackberry specific css file
for (typename Iterable::const_iterator iter = iterator.begin(); iter != end; ++iter)
list.append(toJS(exec, globalObject, WTF::getPtr(*iter)));
- return JSC::constructArray(exec, list);
+ return JSC::constructArray(exec, globalObject, list);
}
template <class T>