| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2008 Matt Lilek <webkit@mattlilek.com> | 3 * Copyright (C) 2008 Matt Lilek <webkit@mattlilek.com> |
| 4 * Copyright (C) 2009, 2010 Google Inc. All rights reserved. | 4 * Copyright (C) 2009, 2010 Google Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions are | 7 * modification, are permitted provided that the following conditions are |
| 8 * met: | 8 * met: |
| 9 * | 9 * |
| 10 * * Redistributions of source code must retain the above copyright | 10 * * Redistributions of source code must retain the above copyright |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 [handler=DOM] void toggleStyleEnabled(in long styleId, in String propert
yName, in boolean disabled, out Value style); | 207 [handler=DOM] void toggleStyleEnabled(in long styleId, in String propert
yName, in boolean disabled, out Value style); |
| 208 [handler=DOM] void setRuleSelector(in long ruleId, in String selector, i
n long selectedNodeId, out Value rule, out boolean selectorAffectsNode); | 208 [handler=DOM] void setRuleSelector(in long ruleId, in String selector, i
n long selectedNodeId, out Value rule, out boolean selectorAffectsNode); |
| 209 [handler=DOM] void addRule(in String selector, in long selectedNodeId, o
ut Value rule, out boolean selectorAffectsNode); | 209 [handler=DOM] void addRule(in String selector, in long selectedNodeId, o
ut Value rule, out boolean selectorAffectsNode); |
| 210 | 210 |
| 211 [handler=CSS] void getStylesForNode2(in long nodeId, out Value styles); | 211 [handler=CSS] void getStylesForNode2(in long nodeId, out Value styles); |
| 212 [handler=CSS] void getComputedStyleForNode2(in long nodeId, out Value st
yle); | 212 [handler=CSS] void getComputedStyleForNode2(in long nodeId, out Value st
yle); |
| 213 [handler=CSS] void getInlineStyleForNode2(in long nodeId, out Value styl
e); | 213 [handler=CSS] void getInlineStyleForNode2(in long nodeId, out Value styl
e); |
| 214 [handler=CSS] void getAllStyles2(out Array styleSheetIds); | 214 [handler=CSS] void getAllStyles2(out Array styleSheetIds); |
| 215 [handler=CSS] void getStyleSheet2(in String styleSheetId, out Value styl
eSheet); | 215 [handler=CSS] void getStyleSheet2(in String styleSheetId, out Value styl
eSheet); |
| 216 [handler=CSS] void getStyleSheetText2(in String styleSheetId, out String
url, out String text); | 216 [handler=CSS] void getStyleSheetText2(in String styleSheetId, out String
url, out String text); |
| 217 [handler=CSS] void setStyleSheetText2(in String styleSheetId, in String
text); | 217 [handler=CSS] void setStyleSheetText2(in String styleSheetId, in String
text, out boolean success); |
| 218 [handler=CSS] void setPropertyText2(in Object styleId, in long propertyI
ndex, in String text, in boolean overwrite, out Value style); | 218 [handler=CSS] void setPropertyText2(in Object styleId, in long propertyI
ndex, in String text, in boolean overwrite, out Value style); |
| 219 [handler=CSS] void toggleProperty2(in Object styleId, in long propertyIn
dex, in boolean disable, out Value style); | 219 [handler=CSS] void toggleProperty2(in Object styleId, in long propertyIn
dex, in boolean disable, out Value style); |
| 220 [handler=CSS] void setRuleSelector2(in Object ruleId, in String selector
, out Value rule); | 220 [handler=CSS] void setRuleSelector2(in Object ruleId, in String selector
, out Value rule); |
| 221 [handler=CSS] void addRule2(in long contextNodeId, in String selector, o
ut Value rule); | 221 [handler=CSS] void addRule2(in long contextNodeId, in String selector, o
ut Value rule); |
| 222 [handler=CSS] void getSupportedCSSProperties(out Array cssProperties); | 222 [handler=CSS] void getSupportedCSSProperties(out Array cssProperties); |
| 223 [handler=CSS] void querySelectorAll(in long documentId, in String select
or, out Array result); | 223 [handler=CSS] void querySelectorAll(in long documentId, in String select
or, out Array result); |
| 224 | 224 |
| 225 [handler=Controller] void getCookies(out Array cookies, out String cooki
esString); | 225 [handler=Controller] void getCookies(out Array cookies, out String cooki
esString); |
| 226 [handler=Controller] void deleteCookie(in String cookieName, in String d
omain); | 226 [handler=Controller] void deleteCookie(in String cookieName, in String d
omain); |
| 227 | 227 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 247 [notify] void sqlTransactionFailed(out long transactionId, out Value sql
Error); | 247 [notify] void sqlTransactionFailed(out long transactionId, out Value sql
Error); |
| 248 #endif | 248 #endif |
| 249 | 249 |
| 250 #if defined(ENABLE_DOM_STORAGE) && ENABLE_DOM_STORAGE | 250 #if defined(ENABLE_DOM_STORAGE) && ENABLE_DOM_STORAGE |
| 251 [handler=Controller] void getDOMStorageEntries(in long storageId, out Ar
ray entries); | 251 [handler=Controller] void getDOMStorageEntries(in long storageId, out Ar
ray entries); |
| 252 [handler=Controller] void setDOMStorageItem(in long storageId, in String
key, in String value, out boolean success); | 252 [handler=Controller] void setDOMStorageItem(in long storageId, in String
key, in String value, out boolean success); |
| 253 [handler=Controller] void removeDOMStorageItem(in long storageId, in Str
ing key, out boolean success); | 253 [handler=Controller] void removeDOMStorageItem(in long storageId, in Str
ing key, out boolean success); |
| 254 #endif | 254 #endif |
| 255 }; | 255 }; |
| 256 } | 256 } |
| OLD | NEW |