Diff
Modified: trunk/Source/WebCore/ChangeLog (165061 => 165062)
--- trunk/Source/WebCore/ChangeLog 2014-03-04 19:01:39 UTC (rev 165061)
+++ trunk/Source/WebCore/ChangeLog 2014-03-04 19:11:51 UTC (rev 165062)
@@ -1,3 +1,21 @@
+2014-03-04 Antti Koivisto <[email protected]>
+
+ Update bindings test results after r165046.
+
+ * bindings/scripts/test/GObject/WebKitDOMTestObj.cpp:
+ (webkit_dom_test_obj_set_property):
+ (webkit_dom_test_obj_set_reflected_string_attr):
+ (webkit_dom_test_obj_set_reflected_url_attr):
+ (webkit_dom_test_obj_set_reflected_custom_url_attr):
+ * bindings/scripts/test/JS/JSTestObj.cpp:
+ (WebCore::setJSTestObjReflectedStringAttr):
+ (WebCore::setJSTestObjReflectedURLAttr):
+ (WebCore::setJSTestObjReflectedCustomURLAttr):
+ * bindings/scripts/test/ObjC/DOMTestObj.mm:
+ (-[DOMTestObj setReflectedStringAttr:]):
+ (-[DOMTestObj setReflectedURLAttr:]):
+ (-[DOMTestObj setReflectedCustomURLAttr:]):
+
2014-03-04 Martin Robinson <[email protected]>
[GTK] Simplify the GObject DOM bindings API break check into one step
Modified: trunk/Source/WebCore/bindings/scripts/test/GObject/WebKitDOMTestObj.cpp (165061 => 165062)
--- trunk/Source/WebCore/bindings/scripts/test/GObject/WebKitDOMTestObj.cpp 2014-03-04 19:01:39 UTC (rev 165061)
+++ trunk/Source/WebCore/bindings/scripts/test/GObject/WebKitDOMTestObj.cpp 2014-03-04 19:11:51 UTC (rev 165062)
@@ -181,7 +181,7 @@
break;
}
case PROP_REFLECTED_STRING_ATTR: {
- coreSelf->setAttribute(WebCore::HTMLNames::reflectedstringattrAttr, WTF::String::fromUTF8(g_value_get_string(value)));
+ coreSelf->setAttributeWithoutSynchronization(WebCore::HTMLNames::reflectedstringattrAttr, WTF::String::fromUTF8(g_value_get_string(value)));
break;
}
case PROP_REFLECTED_INTEGRAL_ATTR: {
@@ -197,11 +197,11 @@
break;
}
case PROP_REFLECTED_URL_ATTR: {
- coreSelf->setAttribute(WebCore::HTMLNames::reflectedurlattrAttr, WTF::String::fromUTF8(g_value_get_string(value)));
+ coreSelf->setAttributeWithoutSynchronization(WebCore::HTMLNames::reflectedurlattrAttr, WTF::String::fromUTF8(g_value_get_string(value)));
break;
}
case PROP_REFLECTED_STRING_ATTR: {
- coreSelf->setAttribute(WebCore::HTMLNames::customContentStringAttrAttr, WTF::String::fromUTF8(g_value_get_string(value)));
+ coreSelf->setAttributeWithoutSynchronization(WebCore::HTMLNames::customContentStringAttrAttr, WTF::String::fromUTF8(g_value_get_string(value)));
break;
}
case PROP_REFLECTED_CUSTOM_INTEGRAL_ATTR: {
@@ -213,7 +213,7 @@
break;
}
case PROP_REFLECTED_CUSTOM_URL_ATTR: {
- coreSelf->setAttribute(WebCore::HTMLNames::customContentURLAttrAttr, WTF::String::fromUTF8(g_value_get_string(value)));
+ coreSelf->setAttributeWithoutSynchronization(WebCore::HTMLNames::customContentURLAttrAttr, WTF::String::fromUTF8(g_value_get_string(value)));
break;
}
case PROP_ATTR_WITH_GETTER_EXCEPTION: {
@@ -1909,7 +1909,7 @@
g_return_if_fail(value);
WebCore::TestObj* item = WebKit::core(self);
WTF::String convertedValue = WTF::String::fromUTF8(value);
- item->setAttribute(WebCore::HTMLNames::reflectedstringattrAttr, convertedValue);
+ item->setAttributeWithoutSynchronization(WebCore::HTMLNames::reflectedstringattrAttr, convertedValue);
}
glong webkit_dom_test_obj_get_reflected_integral_attr(WebKitDOMTestObj* self)
@@ -1979,7 +1979,7 @@
g_return_if_fail(value);
WebCore::TestObj* item = WebKit::core(self);
WTF::String convertedValue = WTF::String::fromUTF8(value);
- item->setAttribute(WebCore::HTMLNames::reflectedurlattrAttr, convertedValue);
+ item->setAttributeWithoutSynchronization(WebCore::HTMLNames::reflectedurlattrAttr, convertedValue);
}
gchar* webkit_dom_test_obj_get_reflected_string_attr(WebKitDOMTestObj* self)
@@ -1998,7 +1998,7 @@
g_return_if_fail(value);
WebCore::TestObj* item = WebKit::core(self);
WTF::String convertedValue = WTF::String::fromUTF8(value);
- item->setAttribute(WebCore::HTMLNames::customContentStringAttrAttr, convertedValue);
+ item->setAttributeWithoutSynchronization(WebCore::HTMLNames::customContentStringAttrAttr, convertedValue);
}
glong webkit_dom_test_obj_get_reflected_custom_integral_attr(WebKitDOMTestObj* self)
@@ -2051,7 +2051,7 @@
g_return_if_fail(value);
WebCore::TestObj* item = WebKit::core(self);
WTF::String convertedValue = WTF::String::fromUTF8(value);
- item->setAttribute(WebCore::HTMLNames::customContentURLAttrAttr, convertedValue);
+ item->setAttributeWithoutSynchronization(WebCore::HTMLNames::customContentURLAttrAttr, convertedValue);
}
glong webkit_dom_test_obj_get_attr_with_getter_exception(WebKitDOMTestObj* self, GError** error)
Modified: trunk/Source/WebCore/bindings/scripts/test/JS/JSTestObj.cpp (165061 => 165062)
--- trunk/Source/WebCore/bindings/scripts/test/JS/JSTestObj.cpp 2014-03-04 19:01:39 UTC (rev 165061)
+++ trunk/Source/WebCore/bindings/scripts/test/JS/JSTestObj.cpp 2014-03-04 19:11:51 UTC (rev 165062)
@@ -1958,7 +1958,7 @@
const String& nativeValue(valueToStringWithNullCheck(exec, value));
if (exec->hadException())
return;
- impl.setAttribute(WebCore::HTMLNames::reflectedstringattrAttr, nativeValue);
+ impl.setAttributeWithoutSynchronization(WebCore::HTMLNames::reflectedstringattrAttr, nativeValue);
}
@@ -2026,7 +2026,7 @@
const String& nativeValue(valueToStringWithNullCheck(exec, value));
if (exec->hadException())
return;
- impl.setAttribute(WebCore::HTMLNames::reflectedurlattrAttr, nativeValue);
+ impl.setAttributeWithoutSynchronization(WebCore::HTMLNames::reflectedurlattrAttr, nativeValue);
}
@@ -2043,7 +2043,7 @@
const String& nativeValue(valueToStringWithNullCheck(exec, value));
if (exec->hadException())
return;
- impl.setAttribute(WebCore::HTMLNames::customContentStringAttrAttr, nativeValue);
+ impl.setAttributeWithoutSynchronization(WebCore::HTMLNames::customContentStringAttrAttr, nativeValue);
}
@@ -2094,7 +2094,7 @@
const String& nativeValue(valueToStringWithNullCheck(exec, value));
if (exec->hadException())
return;
- impl.setAttribute(WebCore::HTMLNames::customContentURLAttrAttr, nativeValue);
+ impl.setAttributeWithoutSynchronization(WebCore::HTMLNames::customContentURLAttrAttr, nativeValue);
}
Modified: trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestObj.mm (165061 => 165062)
--- trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestObj.mm 2014-03-04 19:01:39 UTC (rev 165061)
+++ trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestObj.mm 2014-03-04 19:11:51 UTC (rev 165062)
@@ -267,7 +267,7 @@
- (void)setReflectedStringAttr:(NSString *)newReflectedStringAttr
{
WebCore::JSMainThreadNullState state;
- IMPL->setAttribute(WebCore::HTMLNames::reflectedstringattrAttr, newReflectedStringAttr);
+ IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::reflectedstringattrAttr, newReflectedStringAttr);
}
- (int)reflectedIntegralAttr
@@ -315,7 +315,7 @@
- (void)setReflectedURLAttr:(NSString *)newReflectedURLAttr
{
WebCore::JSMainThreadNullState state;
- IMPL->setAttribute(WebCore::HTMLNames::reflectedurlattrAttr, newReflectedURLAttr);
+ IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::reflectedurlattrAttr, newReflectedURLAttr);
}
- (NSString *)reflectedStringAttr
@@ -327,7 +327,7 @@
- (void)setReflectedStringAttr:(NSString *)newReflectedStringAttr
{
WebCore::JSMainThreadNullState state;
- IMPL->setAttribute(WebCore::HTMLNames::customContentStringAttrAttr, newReflectedStringAttr);
+ IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::customContentStringAttrAttr, newReflectedStringAttr);
}
- (int)reflectedCustomIntegralAttr
@@ -363,7 +363,7 @@
- (void)setReflectedCustomURLAttr:(NSString *)newReflectedCustomURLAttr
{
WebCore::JSMainThreadNullState state;
- IMPL->setAttribute(WebCore::HTMLNames::customContentURLAttrAttr, newReflectedCustomURLAttr);
+ IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::customContentURLAttrAttr, newReflectedCustomURLAttr);
}
- (int)attrWithGetterException