Title: [205696] trunk/Source/WebKit2
Revision
205696
Author
[email protected]
Date
2016-09-08 23:26:14 -0700 (Thu, 08 Sep 2016)

Log Message

Unreviewed. Fix GTK+ build after r205689.

* WebProcess/InjectedBundle/API/gtk/DOM/WebKitDOMHTMLOListElement.cpp:
(webkit_dom_html_o_list_element_set_start):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (205695 => 205696)


--- trunk/Source/WebKit2/ChangeLog	2016-09-09 05:20:17 UTC (rev 205695)
+++ trunk/Source/WebKit2/ChangeLog	2016-09-09 06:26:14 UTC (rev 205696)
@@ -1,3 +1,10 @@
+2016-09-08  Carlos Garcia Campos  <[email protected]>
+
+        Unreviewed. Fix GTK+ build after r205689.
+
+        * WebProcess/InjectedBundle/API/gtk/DOM/WebKitDOMHTMLOListElement.cpp:
+        (webkit_dom_html_o_list_element_set_start):
+
 2016-09-08  Dan Bernstein  <[email protected]>
 
         Re-landing the fix for

Modified: trunk/Source/WebKit2/WebProcess/InjectedBundle/API/gtk/DOM/WebKitDOMHTMLOListElement.cpp (205695 => 205696)


--- trunk/Source/WebKit2/WebProcess/InjectedBundle/API/gtk/DOM/WebKitDOMHTMLOListElement.cpp	2016-09-09 05:20:17 UTC (rev 205695)
+++ trunk/Source/WebKit2/WebProcess/InjectedBundle/API/gtk/DOM/WebKitDOMHTMLOListElement.cpp	2016-09-09 06:26:14 UTC (rev 205696)
@@ -216,7 +216,7 @@
     WebCore::JSMainThreadNullState state;
     g_return_if_fail(WEBKIT_DOM_IS_HTML_O_LIST_ELEMENT(self));
     WebCore::HTMLOListElement* item = WebKit::core(self);
-    item->setStart(value);
+    item->setStartForBindings(value);
 }
 
 gchar* webkit_dom_html_o_list_element_get_type_attr(WebKitDOMHTMLOListElement* self)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to