Changeset 165062 in webkit


Ignore:
Timestamp:
Mar 4, 2014 11:11:51 AM (10 years ago)
Author:
Antti Koivisto
Message:

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:]):

Location:
trunk/Source/WebCore
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r165060 r165062  
     12014-03-04  Antti Koivisto  <antti@apple.com>
     2
     3        Update bindings test results after r165046.
     4
     5        * bindings/scripts/test/GObject/WebKitDOMTestObj.cpp:
     6        (webkit_dom_test_obj_set_property):
     7        (webkit_dom_test_obj_set_reflected_string_attr):
     8        (webkit_dom_test_obj_set_reflected_url_attr):
     9        (webkit_dom_test_obj_set_reflected_custom_url_attr):
     10        * bindings/scripts/test/JS/JSTestObj.cpp:
     11        (WebCore::setJSTestObjReflectedStringAttr):
     12        (WebCore::setJSTestObjReflectedURLAttr):
     13        (WebCore::setJSTestObjReflectedCustomURLAttr):
     14        * bindings/scripts/test/ObjC/DOMTestObj.mm:
     15        (-[DOMTestObj setReflectedStringAttr:]):
     16        (-[DOMTestObj setReflectedURLAttr:]):
     17        (-[DOMTestObj setReflectedCustomURLAttr:]):
     18
    1192014-03-04  Martin Robinson  <mrobinson@igalia.com>
    220
  • trunk/Source/WebCore/bindings/scripts/test/GObject/WebKitDOMTestObj.cpp

    r156808 r165062  
    182182    }
    183183    case PROP_REFLECTED_STRING_ATTR: {
    184         coreSelf->setAttribute(WebCore::HTMLNames::reflectedstringattrAttr, WTF::String::fromUTF8(g_value_get_string(value)));
     184        coreSelf->setAttributeWithoutSynchronization(WebCore::HTMLNames::reflectedstringattrAttr, WTF::String::fromUTF8(g_value_get_string(value)));
    185185        break;
    186186    }
     
    198198    }
    199199    case PROP_REFLECTED_URL_ATTR: {
    200         coreSelf->setAttribute(WebCore::HTMLNames::reflectedurlattrAttr, WTF::String::fromUTF8(g_value_get_string(value)));
     200        coreSelf->setAttributeWithoutSynchronization(WebCore::HTMLNames::reflectedurlattrAttr, WTF::String::fromUTF8(g_value_get_string(value)));
    201201        break;
    202202    }
    203203    case PROP_REFLECTED_STRING_ATTR: {
    204         coreSelf->setAttribute(WebCore::HTMLNames::customContentStringAttrAttr, WTF::String::fromUTF8(g_value_get_string(value)));
     204        coreSelf->setAttributeWithoutSynchronization(WebCore::HTMLNames::customContentStringAttrAttr, WTF::String::fromUTF8(g_value_get_string(value)));
    205205        break;
    206206    }
     
    214214    }
    215215    case PROP_REFLECTED_CUSTOM_URL_ATTR: {
    216         coreSelf->setAttribute(WebCore::HTMLNames::customContentURLAttrAttr, WTF::String::fromUTF8(g_value_get_string(value)));
     216        coreSelf->setAttributeWithoutSynchronization(WebCore::HTMLNames::customContentURLAttrAttr, WTF::String::fromUTF8(g_value_get_string(value)));
    217217        break;
    218218    }
     
    19101910    WebCore::TestObj* item = WebKit::core(self);
    19111911    WTF::String convertedValue = WTF::String::fromUTF8(value);
    1912     item->setAttribute(WebCore::HTMLNames::reflectedstringattrAttr, convertedValue);
     1912    item->setAttributeWithoutSynchronization(WebCore::HTMLNames::reflectedstringattrAttr, convertedValue);
    19131913}
    19141914
     
    19801980    WebCore::TestObj* item = WebKit::core(self);
    19811981    WTF::String convertedValue = WTF::String::fromUTF8(value);
    1982     item->setAttribute(WebCore::HTMLNames::reflectedurlattrAttr, convertedValue);
     1982    item->setAttributeWithoutSynchronization(WebCore::HTMLNames::reflectedurlattrAttr, convertedValue);
    19831983}
    19841984
     
    19991999    WebCore::TestObj* item = WebKit::core(self);
    20002000    WTF::String convertedValue = WTF::String::fromUTF8(value);
    2001     item->setAttribute(WebCore::HTMLNames::customContentStringAttrAttr, convertedValue);
     2001    item->setAttributeWithoutSynchronization(WebCore::HTMLNames::customContentStringAttrAttr, convertedValue);
    20022002}
    20032003
     
    20522052    WebCore::TestObj* item = WebKit::core(self);
    20532053    WTF::String convertedValue = WTF::String::fromUTF8(value);
    2054     item->setAttribute(WebCore::HTMLNames::customContentURLAttrAttr, convertedValue);
     2054    item->setAttributeWithoutSynchronization(WebCore::HTMLNames::customContentURLAttrAttr, convertedValue);
    20552055}
    20562056
  • trunk/Source/WebCore/bindings/scripts/test/JS/JSTestObj.cpp

    r164853 r165062  
    19591959    if (exec->hadException())
    19601960        return;
    1961     impl.setAttribute(WebCore::HTMLNames::reflectedstringattrAttr, nativeValue);
     1961    impl.setAttributeWithoutSynchronization(WebCore::HTMLNames::reflectedstringattrAttr, nativeValue);
    19621962}
    19631963
     
    20272027    if (exec->hadException())
    20282028        return;
    2029     impl.setAttribute(WebCore::HTMLNames::reflectedurlattrAttr, nativeValue);
     2029    impl.setAttributeWithoutSynchronization(WebCore::HTMLNames::reflectedurlattrAttr, nativeValue);
    20302030}
    20312031
     
    20442044    if (exec->hadException())
    20452045        return;
    2046     impl.setAttribute(WebCore::HTMLNames::customContentStringAttrAttr, nativeValue);
     2046    impl.setAttributeWithoutSynchronization(WebCore::HTMLNames::customContentStringAttrAttr, nativeValue);
    20472047}
    20482048
     
    20952095    if (exec->hadException())
    20962096        return;
    2097     impl.setAttribute(WebCore::HTMLNames::customContentURLAttrAttr, nativeValue);
     2097    impl.setAttributeWithoutSynchronization(WebCore::HTMLNames::customContentURLAttrAttr, nativeValue);
    20982098}
    20992099
  • trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestObj.mm

    r164479 r165062  
    268268{
    269269    WebCore::JSMainThreadNullState state;
    270     IMPL->setAttribute(WebCore::HTMLNames::reflectedstringattrAttr, newReflectedStringAttr);
     270    IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::reflectedstringattrAttr, newReflectedStringAttr);
    271271}
    272272
     
    316316{
    317317    WebCore::JSMainThreadNullState state;
    318     IMPL->setAttribute(WebCore::HTMLNames::reflectedurlattrAttr, newReflectedURLAttr);
     318    IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::reflectedurlattrAttr, newReflectedURLAttr);
    319319}
    320320
     
    328328{
    329329    WebCore::JSMainThreadNullState state;
    330     IMPL->setAttribute(WebCore::HTMLNames::customContentStringAttrAttr, newReflectedStringAttr);
     330    IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::customContentStringAttrAttr, newReflectedStringAttr);
    331331}
    332332
     
    364364{
    365365    WebCore::JSMainThreadNullState state;
    366     IMPL->setAttribute(WebCore::HTMLNames::customContentURLAttrAttr, newReflectedCustomURLAttr);
     366    IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::customContentURLAttrAttr, newReflectedCustomURLAttr);
    367367}
    368368
Note: See TracChangeset for help on using the changeset viewer.