CSSStyleDeclaration.hx 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722
  1. /*
  2. * Copyright (C)2005-2017 Haxe Foundation
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  19. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  20. * DEALINGS IN THE SOFTWARE.
  21. */
  22. // This file is generated from mozilla\CSSStyleDeclaration.webidl. Do not edit!
  23. package js.html;
  24. /**
  25. `CSSStyleDeclaration` represents a collection of CSS property-value pairs. It is used in a few APIs:
  26. Documentation [CSSStyleDeclaration](https://developer.mozilla.org/en-US/docs/Web/API/CSSStyleDeclaration) by [Mozilla Contributors](https://developer.mozilla.org/en-US/docs/Web/API/CSSStyleDeclaration$history), licensed under [CC-BY-SA 2.5](https://creativecommons.org/licenses/by-sa/2.5/).
  27. @see <https://developer.mozilla.org/en-US/docs/Web/API/CSSStyleDeclaration>
  28. **/
  29. @:native("CSSStyleDeclaration")
  30. extern class CSSStyleDeclaration implements ArrayAccess<String>
  31. {
  32. var cssText : String;
  33. var length(default,null) : Int;
  34. var parentRule(default,null) : CSSRule;
  35. /** Shorthand for the "align-content" CSS property. */
  36. var alignContent :String;
  37. /** Shorthand for the "align-items" CSS property. */
  38. var alignItems :String;
  39. /** Shorthand for the "align-self" CSS property. */
  40. var alignSelf :String;
  41. /** Shorthand for the "alignment-adjust" CSS property. */
  42. var alignmentAdjust :String;
  43. /** Shorthand for the "alignment-baseline" CSS property. */
  44. var alignmentBaseline :String;
  45. /** Shorthand for the "all" CSS property. */
  46. var all :String;
  47. /** Shorthand for the "anchor-point" CSS property. */
  48. var anchorPoint :String;
  49. /** Shorthand for the "animation" CSS property. */
  50. var animation :String;
  51. /** Shorthand for the "animation-delay" CSS property. */
  52. var animationDelay :String;
  53. /** Shorthand for the "animation-direction" CSS property. */
  54. var animationDirection :String;
  55. /** Shorthand for the "animation-duration" CSS property. */
  56. var animationDuration :String;
  57. /** Shorthand for the "animation-fill-mode" CSS property. */
  58. var animationFillMode :String;
  59. /** Shorthand for the "animation-iteration-count" CSS property. */
  60. var animationIterationCount :String;
  61. /** Shorthand for the "animation-name" CSS property. */
  62. var animationName :String;
  63. /** Shorthand for the "animation-play-state" CSS property. */
  64. var animationPlayState :String;
  65. /** Shorthand for the "animation-timing-function" CSS property. */
  66. var animationTimingFunction :String;
  67. /** Shorthand for the "azimuth" CSS property. */
  68. var azimuth :String;
  69. /** Shorthand for the "backface-visibility" CSS property. */
  70. var backfaceVisibility :String;
  71. /** Shorthand for the "background" CSS property. */
  72. var background :String;
  73. /** Shorthand for the "background-attachment" CSS property. */
  74. var backgroundAttachment :String;
  75. /** Shorthand for the "background-clip" CSS property. */
  76. var backgroundClip :String;
  77. /** Shorthand for the "background-color" CSS property. */
  78. var backgroundColor :String;
  79. /** Shorthand for the "background-image" CSS property. */
  80. var backgroundImage :String;
  81. /** Shorthand for the "background-origin" CSS property. */
  82. var backgroundOrigin :String;
  83. /** Shorthand for the "background-position" CSS property. */
  84. var backgroundPosition :String;
  85. /** Shorthand for the "background-repeat" CSS property. */
  86. var backgroundRepeat :String;
  87. /** Shorthand for the "background-size" CSS property. */
  88. var backgroundSize :String;
  89. /** Shorthand for the "baseline-shift" CSS property. */
  90. var baselineShift :String;
  91. /** Shorthand for the "binding" CSS property. */
  92. var binding :String;
  93. /** Shorthand for the "bleed" CSS property. */
  94. var bleed :String;
  95. /** Shorthand for the "bookmark-label" CSS property. */
  96. var bookmarkLabel :String;
  97. /** Shorthand for the "bookmark-level" CSS property. */
  98. var bookmarkLevel :String;
  99. /** Shorthand for the "bookmark-state" CSS property. */
  100. var bookmarkState :String;
  101. /** Shorthand for the "border" CSS property. */
  102. var border :String;
  103. /** Shorthand for the "border-bottom" CSS property. */
  104. var borderBottom :String;
  105. /** Shorthand for the "border-bottom-color" CSS property. */
  106. var borderBottomColor :String;
  107. /** Shorthand for the "border-bottom-left-radius" CSS property. */
  108. var borderBottomLeftRadius :String;
  109. /** Shorthand for the "border-bottom-right-radius" CSS property. */
  110. var borderBottomRightRadius :String;
  111. /** Shorthand for the "border-bottom-style" CSS property. */
  112. var borderBottomStyle :String;
  113. /** Shorthand for the "border-bottom-width" CSS property. */
  114. var borderBottomWidth :String;
  115. /** Shorthand for the "border-collapse" CSS property. */
  116. var borderCollapse :String;
  117. /** Shorthand for the "border-color" CSS property. */
  118. var borderColor :String;
  119. /** Shorthand for the "border-image" CSS property. */
  120. var borderImage :String;
  121. /** Shorthand for the "border-image-outset" CSS property. */
  122. var borderImageOutset :String;
  123. /** Shorthand for the "border-image-repeat" CSS property. */
  124. var borderImageRepeat :String;
  125. /** Shorthand for the "border-image-slice" CSS property. */
  126. var borderImageSlice :String;
  127. /** Shorthand for the "border-image-source" CSS property. */
  128. var borderImageSource :String;
  129. /** Shorthand for the "border-image-width" CSS property. */
  130. var borderImageWidth :String;
  131. /** Shorthand for the "border-left" CSS property. */
  132. var borderLeft :String;
  133. /** Shorthand for the "border-left-color" CSS property. */
  134. var borderLeftColor :String;
  135. /** Shorthand for the "border-left-style" CSS property. */
  136. var borderLeftStyle :String;
  137. /** Shorthand for the "border-left-width" CSS property. */
  138. var borderLeftWidth :String;
  139. /** Shorthand for the "border-radius" CSS property. */
  140. var borderRadius :String;
  141. /** Shorthand for the "border-right" CSS property. */
  142. var borderRight :String;
  143. /** Shorthand for the "border-right-color" CSS property. */
  144. var borderRightColor :String;
  145. /** Shorthand for the "border-right-style" CSS property. */
  146. var borderRightStyle :String;
  147. /** Shorthand for the "border-right-width" CSS property. */
  148. var borderRightWidth :String;
  149. /** Shorthand for the "border-spacing" CSS property. */
  150. var borderSpacing :String;
  151. /** Shorthand for the "border-style" CSS property. */
  152. var borderStyle :String;
  153. /** Shorthand for the "border-top" CSS property. */
  154. var borderTop :String;
  155. /** Shorthand for the "border-top-color" CSS property. */
  156. var borderTopColor :String;
  157. /** Shorthand for the "border-top-left-radius" CSS property. */
  158. var borderTopLeftRadius :String;
  159. /** Shorthand for the "border-top-right-radius" CSS property. */
  160. var borderTopRightRadius :String;
  161. /** Shorthand for the "border-top-style" CSS property. */
  162. var borderTopStyle :String;
  163. /** Shorthand for the "border-top-width" CSS property. */
  164. var borderTopWidth :String;
  165. /** Shorthand for the "border-width" CSS property. */
  166. var borderWidth :String;
  167. /** Shorthand for the "bottom" CSS property. */
  168. var bottom :String;
  169. /** Shorthand for the "box-decoration-break" CSS property. */
  170. var boxDecorationBreak :String;
  171. /** Shorthand for the "box-shadow" CSS property. */
  172. var boxShadow :String;
  173. /** Shorthand for the "box-sizing" CSS property. */
  174. var boxSizing :String;
  175. /** Shorthand for the "box-snap" CSS property. */
  176. var boxSnap :String;
  177. /** Shorthand for the "box-suppress" CSS property. */
  178. var boxSuppress :String;
  179. /** Shorthand for the "break-after" CSS property. */
  180. var breakAfter :String;
  181. /** Shorthand for the "break-before" CSS property. */
  182. var breakBefore :String;
  183. /** Shorthand for the "break-inside" CSS property. */
  184. var breakInside :String;
  185. /** Shorthand for the "caption-side" CSS property. */
  186. var captionSide :String;
  187. /** Shorthand for the "chains" CSS property. */
  188. var chains :String;
  189. /** Shorthand for the "clear" CSS property. */
  190. var clear :String;
  191. /** Shorthand for the "clip" CSS property. */
  192. var clip :String;
  193. /** Shorthand for the "clip-path" CSS property. */
  194. var clipPath :String;
  195. /** Shorthand for the "clip-rule" CSS property. */
  196. var clipRule :String;
  197. /** Shorthand for the "color" CSS property. */
  198. var color :String;
  199. /** Shorthand for the "color-interpolation-filters" CSS property. */
  200. var colorInterpolationFilters :String;
  201. /** Shorthand for the "column-count" CSS property. */
  202. var columnCount :String;
  203. /** Shorthand for the "column-fill" CSS property. */
  204. var columnFill :String;
  205. /** Shorthand for the "column-gap" CSS property. */
  206. var columnGap :String;
  207. /** Shorthand for the "column-rule" CSS property. */
  208. var columnRule :String;
  209. /** Shorthand for the "column-rule-color" CSS property. */
  210. var columnRuleColor :String;
  211. /** Shorthand for the "column-rule-style" CSS property. */
  212. var columnRuleStyle :String;
  213. /** Shorthand for the "column-rule-width" CSS property. */
  214. var columnRuleWidth :String;
  215. /** Shorthand for the "column-span" CSS property. */
  216. var columnSpan :String;
  217. /** Shorthand for the "column-width" CSS property. */
  218. var columnWidth :String;
  219. /** Shorthand for the "columns" CSS property. */
  220. var columns :String;
  221. /** Shorthand for the "contain" CSS property. */
  222. var contain :String;
  223. /** Shorthand for the "content" CSS property. */
  224. var content :String;
  225. /** Shorthand for the "counter-increment" CSS property. */
  226. var counterIncrement :String;
  227. /** Shorthand for the "counter-reset" CSS property. */
  228. var counterReset :String;
  229. /** Shorthand for the "counter-set" CSS property. */
  230. var counterSet :String;
  231. /** Shorthand for the "crop" CSS property. */
  232. var crop :String;
  233. /** Shorthand for the "cue" CSS property. */
  234. var cue :String;
  235. /** Shorthand for the "cue-after" CSS property. */
  236. var cueAfter :String;
  237. /** Shorthand for the "cue-before" CSS property. */
  238. var cueBefore :String;
  239. /** Shorthand for the "cursor" CSS property. */
  240. var cursor :String;
  241. /** Shorthand for the "direction" CSS property. */
  242. var direction :String;
  243. /** Shorthand for the "display" CSS property. */
  244. var display :String;
  245. /** Shorthand for the "display-inside" CSS property. */
  246. var displayInside :String;
  247. /** Shorthand for the "display-list" CSS property. */
  248. var displayList :String;
  249. /** Shorthand for the "display-outside" CSS property. */
  250. var displayOutside :String;
  251. /** Shorthand for the "dominant-baseline" CSS property. */
  252. var dominantBaseline :String;
  253. /** Shorthand for the "elevation" CSS property. */
  254. var elevation :String;
  255. /** Shorthand for the "empty-cells" CSS property. */
  256. var emptyCells :String;
  257. /** Shorthand for the "filter" CSS property. */
  258. var filter :String;
  259. /** Shorthand for the "flex" CSS property. */
  260. var flex :String;
  261. /** Shorthand for the "flex-basis" CSS property. */
  262. var flexBasis :String;
  263. /** Shorthand for the "flex-direction" CSS property. */
  264. var flexDirection :String;
  265. /** Shorthand for the "flex-flow" CSS property. */
  266. var flexFlow :String;
  267. /** Shorthand for the "flex-grow" CSS property. */
  268. var flexGrow :String;
  269. /** Shorthand for the "flex-shrink" CSS property. */
  270. var flexShrink :String;
  271. /** Shorthand for the "flex-wrap" CSS property. */
  272. var flexWrap :String;
  273. /** Shorthand for the "float" CSS property. */
  274. var float :String;
  275. /** Shorthand for the "float-offset" CSS property. */
  276. var floatOffset :String;
  277. /** Shorthand for the "flood-color" CSS property. */
  278. var floodColor :String;
  279. /** Shorthand for the "flood-opacity" CSS property. */
  280. var floodOpacity :String;
  281. /** Shorthand for the "flow-from" CSS property. */
  282. var flowFrom :String;
  283. /** Shorthand for the "flow-into" CSS property. */
  284. var flowInto :String;
  285. /** Shorthand for the "font" CSS property. */
  286. var font :String;
  287. /** Shorthand for the "font-family" CSS property. */
  288. var fontFamily :String;
  289. /** Shorthand for the "font-feature-settings" CSS property. */
  290. var fontFeatureSettings :String;
  291. /** Shorthand for the "font-kerning" CSS property. */
  292. var fontKerning :String;
  293. /** Shorthand for the "font-language-override" CSS property. */
  294. var fontLanguageOverride :String;
  295. /** Shorthand for the "font-size" CSS property. */
  296. var fontSize :String;
  297. /** Shorthand for the "font-size-adjust" CSS property. */
  298. var fontSizeAdjust :String;
  299. /** Shorthand for the "font-stretch" CSS property. */
  300. var fontStretch :String;
  301. /** Shorthand for the "font-style" CSS property. */
  302. var fontStyle :String;
  303. /** Shorthand for the "font-synthesis" CSS property. */
  304. var fontSynthesis :String;
  305. /** Shorthand for the "font-variant" CSS property. */
  306. var fontVariant :String;
  307. /** Shorthand for the "font-variant-alternates" CSS property. */
  308. var fontVariantAlternates :String;
  309. /** Shorthand for the "font-variant-caps" CSS property. */
  310. var fontVariantCaps :String;
  311. /** Shorthand for the "font-variant-east-asian" CSS property. */
  312. var fontVariantEastAsian :String;
  313. /** Shorthand for the "font-variant-ligatures" CSS property. */
  314. var fontVariantLigatures :String;
  315. /** Shorthand for the "font-variant-numeric" CSS property. */
  316. var fontVariantNumeric :String;
  317. /** Shorthand for the "font-variant-position" CSS property. */
  318. var fontVariantPosition :String;
  319. /** Shorthand for the "font-weight" CSS property. */
  320. var fontWeight :String;
  321. /** Shorthand for the "grid" CSS property. */
  322. var grid :String;
  323. /** Shorthand for the "grid-area" CSS property. */
  324. var gridArea :String;
  325. /** Shorthand for the "grid-auto-columns" CSS property. */
  326. var gridAutoColumns :String;
  327. /** Shorthand for the "grid-auto-flow" CSS property. */
  328. var gridAutoFlow :String;
  329. /** Shorthand for the "grid-auto-rows" CSS property. */
  330. var gridAutoRows :String;
  331. /** Shorthand for the "grid-column" CSS property. */
  332. var gridColumn :String;
  333. /** Shorthand for the "grid-column-end" CSS property. */
  334. var gridColumnEnd :String;
  335. /** Shorthand for the "grid-column-start" CSS property. */
  336. var gridColumnStart :String;
  337. /** Shorthand for the "grid-row" CSS property. */
  338. var gridRow :String;
  339. /** Shorthand for the "grid-row-end" CSS property. */
  340. var gridRowEnd :String;
  341. /** Shorthand for the "grid-row-start" CSS property. */
  342. var gridRowStart :String;
  343. /** Shorthand for the "grid-template" CSS property. */
  344. var gridTemplate :String;
  345. /** Shorthand for the "grid-template-areas" CSS property. */
  346. var gridTemplateAreas :String;
  347. /** Shorthand for the "grid-template-columns" CSS property. */
  348. var gridTemplateColumns :String;
  349. /** Shorthand for the "grid-template-rows" CSS property. */
  350. var gridTemplateRows :String;
  351. /** Shorthand for the "hanging-punctuation" CSS property. */
  352. var hangingPunctuation :String;
  353. /** Shorthand for the "height" CSS property. */
  354. var height :String;
  355. /** Shorthand for the "hyphens" CSS property. */
  356. var hyphens :String;
  357. /** Shorthand for the "icon" CSS property. */
  358. var icon :String;
  359. /** Shorthand for the "image-orientation" CSS property. */
  360. var imageOrientation :String;
  361. /** Shorthand for the "image-resolution" CSS property. */
  362. var imageResolution :String;
  363. /** Shorthand for the "ime-mode" CSS property. */
  364. var imeMode :String;
  365. /** Shorthand for the "initial-letters" CSS property. */
  366. var initialLetters :String;
  367. /** Shorthand for the "inline-box-align" CSS property. */
  368. var inlineBoxAlign :String;
  369. /** Shorthand for the "justify-content" CSS property. */
  370. var justifyContent :String;
  371. /** Shorthand for the "justify-items" CSS property. */
  372. var justifyItems :String;
  373. /** Shorthand for the "justify-self" CSS property. */
  374. var justifySelf :String;
  375. /** Shorthand for the "left" CSS property. */
  376. var left :String;
  377. /** Shorthand for the "letter-spacing" CSS property. */
  378. var letterSpacing :String;
  379. /** Shorthand for the "lighting-color" CSS property. */
  380. var lightingColor :String;
  381. /** Shorthand for the "line-box-contain" CSS property. */
  382. var lineBoxContain :String;
  383. /** Shorthand for the "line-break" CSS property. */
  384. var lineBreak :String;
  385. /** Shorthand for the "line-grid" CSS property. */
  386. var lineGrid :String;
  387. /** Shorthand for the "line-height" CSS property. */
  388. var lineHeight :String;
  389. /** Shorthand for the "line-snap" CSS property. */
  390. var lineSnap :String;
  391. /** Shorthand for the "line-stacking" CSS property. */
  392. var lineStacking :String;
  393. /** Shorthand for the "line-stacking-ruby" CSS property. */
  394. var lineStackingRuby :String;
  395. /** Shorthand for the "line-stacking-shift" CSS property. */
  396. var lineStackingShift :String;
  397. /** Shorthand for the "line-stacking-strategy" CSS property. */
  398. var lineStackingStrategy :String;
  399. /** Shorthand for the "list-style" CSS property. */
  400. var listStyle :String;
  401. /** Shorthand for the "list-style-image" CSS property. */
  402. var listStyleImage :String;
  403. /** Shorthand for the "list-style-position" CSS property. */
  404. var listStylePosition :String;
  405. /** Shorthand for the "list-style-type" CSS property. */
  406. var listStyleType :String;
  407. /** Shorthand for the "margin" CSS property. */
  408. var margin :String;
  409. /** Shorthand for the "margin-bottom" CSS property. */
  410. var marginBottom :String;
  411. /** Shorthand for the "margin-left" CSS property. */
  412. var marginLeft :String;
  413. /** Shorthand for the "margin-right" CSS property. */
  414. var marginRight :String;
  415. /** Shorthand for the "margin-top" CSS property. */
  416. var marginTop :String;
  417. /** Shorthand for the "marker-offset" CSS property. */
  418. var markerOffset :String;
  419. /** Shorthand for the "marker-side" CSS property. */
  420. var markerSide :String;
  421. /** Shorthand for the "marks" CSS property. */
  422. var marks :String;
  423. /** Shorthand for the "mask" CSS property. */
  424. var mask :String;
  425. /** Shorthand for the "mask-box" CSS property. */
  426. var maskBox :String;
  427. /** Shorthand for the "mask-box-outset" CSS property. */
  428. var maskBoxOutset :String;
  429. /** Shorthand for the "mask-box-repeat" CSS property. */
  430. var maskBoxRepeat :String;
  431. /** Shorthand for the "mask-box-slice" CSS property. */
  432. var maskBoxSlice :String;
  433. /** Shorthand for the "mask-box-source" CSS property. */
  434. var maskBoxSource :String;
  435. /** Shorthand for the "mask-box-width" CSS property. */
  436. var maskBoxWidth :String;
  437. /** Shorthand for the "mask-clip" CSS property. */
  438. var maskClip :String;
  439. /** Shorthand for the "mask-image" CSS property. */
  440. var maskImage :String;
  441. /** Shorthand for the "mask-origin" CSS property. */
  442. var maskOrigin :String;
  443. /** Shorthand for the "mask-position" CSS property. */
  444. var maskPosition :String;
  445. /** Shorthand for the "mask-repeat" CSS property. */
  446. var maskRepeat :String;
  447. /** Shorthand for the "mask-size" CSS property. */
  448. var maskSize :String;
  449. /** Shorthand for the "mask-source-type" CSS property. */
  450. var maskSourceType :String;
  451. /** Shorthand for the "mask-type" CSS property. */
  452. var maskType :String;
  453. /** Shorthand for the "max-height" CSS property. */
  454. var maxHeight :String;
  455. /** Shorthand for the "max-lines" CSS property. */
  456. var maxLines :String;
  457. /** Shorthand for the "max-width" CSS property. */
  458. var maxWidth :String;
  459. /** Shorthand for the "min-height" CSS property. */
  460. var minHeight :String;
  461. /** Shorthand for the "min-width" CSS property. */
  462. var minWidth :String;
  463. /** Shorthand for the "move-to" CSS property. */
  464. var moveTo :String;
  465. /** Shorthand for the "nav-down" CSS property. */
  466. var navDown :String;
  467. /** Shorthand for the "nav-index" CSS property. */
  468. var navIndex :String;
  469. /** Shorthand for the "nav-left" CSS property. */
  470. var navLeft :String;
  471. /** Shorthand for the "nav-right" CSS property. */
  472. var navRight :String;
  473. /** Shorthand for the "nav-up" CSS property. */
  474. var navUp :String;
  475. /** Shorthand for the "object-fit" CSS property. */
  476. var objectFit :String;
  477. /** Shorthand for the "object-position" CSS property. */
  478. var objectPosition :String;
  479. /** Shorthand for the "opacity" CSS property. */
  480. var opacity :String;
  481. /** Shorthand for the "order" CSS property. */
  482. var order :String;
  483. /** Shorthand for the "orphans" CSS property. */
  484. var orphans :String;
  485. /** Shorthand for the "outline" CSS property. */
  486. var outline :String;
  487. /** Shorthand for the "outline-color" CSS property. */
  488. var outlineColor :String;
  489. /** Shorthand for the "outline-offset" CSS property. */
  490. var outlineOffset :String;
  491. /** Shorthand for the "outline-style" CSS property. */
  492. var outlineStyle :String;
  493. /** Shorthand for the "outline-width" CSS property. */
  494. var outlineWidth :String;
  495. /** Shorthand for the "overflow" CSS property. */
  496. var overflow :String;
  497. /** Shorthand for the "overflow-wrap" CSS property. */
  498. var overflowWrap :String;
  499. /** Shorthand for the "overflow-x" CSS property. */
  500. var overflowX :String;
  501. /** Shorthand for the "overflow-y" CSS property. */
  502. var overflowY :String;
  503. /** Shorthand for the "padding" CSS property. */
  504. var padding :String;
  505. /** Shorthand for the "padding-bottom" CSS property. */
  506. var paddingBottom :String;
  507. /** Shorthand for the "padding-left" CSS property. */
  508. var paddingLeft :String;
  509. /** Shorthand for the "padding-right" CSS property. */
  510. var paddingRight :String;
  511. /** Shorthand for the "padding-top" CSS property. */
  512. var paddingTop :String;
  513. /** Shorthand for the "page" CSS property. */
  514. var page :String;
  515. /** Shorthand for the "page-break-after" CSS property. */
  516. var pageBreakAfter :String;
  517. /** Shorthand for the "page-break-before" CSS property. */
  518. var pageBreakBefore :String;
  519. /** Shorthand for the "page-break-inside" CSS property. */
  520. var pageBreakInside :String;
  521. /** Shorthand for the "page-policy" CSS property. */
  522. var pagePolicy :String;
  523. /** Shorthand for the "pause" CSS property. */
  524. var pause :String;
  525. /** Shorthand for the "pause-after" CSS property. */
  526. var pauseAfter :String;
  527. /** Shorthand for the "pause-before" CSS property. */
  528. var pauseBefore :String;
  529. /** Shorthand for the "perspective" CSS property. */
  530. var perspective :String;
  531. /** Shorthand for the "perspective-origin" CSS property. */
  532. var perspectiveOrigin :String;
  533. /** Shorthand for the "pitch" CSS property. */
  534. var pitch :String;
  535. /** Shorthand for the "pitch-range" CSS property. */
  536. var pitchRange :String;
  537. /** Shorthand for the "play-during" CSS property. */
  538. var playDuring :String;
  539. /** Shorthand for the "position" CSS property. */
  540. var position :String;
  541. /** Shorthand for the "presentation-level" CSS property. */
  542. var presentationLevel :String;
  543. /** Shorthand for the "quotes" CSS property. */
  544. var quotes :String;
  545. /** Shorthand for the "region-fragment" CSS property. */
  546. var regionFragment :String;
  547. /** Shorthand for the "resize" CSS property. */
  548. var resize :String;
  549. /** Shorthand for the "rest" CSS property. */
  550. var rest :String;
  551. /** Shorthand for the "rest-after" CSS property. */
  552. var restAfter :String;
  553. /** Shorthand for the "rest-before" CSS property. */
  554. var restBefore :String;
  555. /** Shorthand for the "richness" CSS property. */
  556. var richness :String;
  557. /** Shorthand for the "right" CSS property. */
  558. var right :String;
  559. /** Shorthand for the "rotation" CSS property. */
  560. var rotation :String;
  561. /** Shorthand for the "rotation-point" CSS property. */
  562. var rotationPoint :String;
  563. /** Shorthand for the "ruby-align" CSS property. */
  564. var rubyAlign :String;
  565. /** Shorthand for the "ruby-merge" CSS property. */
  566. var rubyMerge :String;
  567. /** Shorthand for the "ruby-position" CSS property. */
  568. var rubyPosition :String;
  569. /** Shorthand for the "shape-image-threshold" CSS property. */
  570. var shapeImageThreshold :String;
  571. /** Shorthand for the "shape-outside" CSS property. */
  572. var shapeOutside :String;
  573. /** Shorthand for the "shape-margin" CSS property. */
  574. var shapeMargin :String;
  575. /** Shorthand for the "size" CSS property. */
  576. var size :String;
  577. /** Shorthand for the "speak" CSS property. */
  578. var speak :String;
  579. /** Shorthand for the "speak-as" CSS property. */
  580. var speakAs :String;
  581. /** Shorthand for the "speak-header" CSS property. */
  582. var speakHeader :String;
  583. /** Shorthand for the "speak-numeral" CSS property. */
  584. var speakNumeral :String;
  585. /** Shorthand for the "speak-punctuation" CSS property. */
  586. var speakPunctuation :String;
  587. /** Shorthand for the "speech-rate" CSS property. */
  588. var speechRate :String;
  589. /** Shorthand for the "stress" CSS property. */
  590. var stress :String;
  591. /** Shorthand for the "string-set" CSS property. */
  592. var stringSet :String;
  593. /** Shorthand for the "tab-size" CSS property. */
  594. var tabSize :String;
  595. /** Shorthand for the "table-layout" CSS property. */
  596. var tableLayout :String;
  597. /** Shorthand for the "text-align" CSS property. */
  598. var textAlign :String;
  599. /** Shorthand for the "text-align-last" CSS property. */
  600. var textAlignLast :String;
  601. /** Shorthand for the "text-combine-upright" CSS property. */
  602. var textCombineUpright :String;
  603. /** Shorthand for the "text-decoration" CSS property. */
  604. var textDecoration :String;
  605. /** Shorthand for the "text-decoration-color" CSS property. */
  606. var textDecorationColor :String;
  607. /** Shorthand for the "text-decoration-line" CSS property. */
  608. var textDecorationLine :String;
  609. /** Shorthand for the "text-decoration-skip" CSS property. */
  610. var textDecorationSkip :String;
  611. /** Shorthand for the "text-decoration-style" CSS property. */
  612. var textDecorationStyle :String;
  613. /** Shorthand for the "text-emphasis" CSS property. */
  614. var textEmphasis :String;
  615. /** Shorthand for the "text-emphasis-color" CSS property. */
  616. var textEmphasisColor :String;
  617. /** Shorthand for the "text-emphasis-position" CSS property. */
  618. var textEmphasisPosition :String;
  619. /** Shorthand for the "text-emphasis-style" CSS property. */
  620. var textEmphasisStyle :String;
  621. /** Shorthand for the "text-height" CSS property. */
  622. var textHeight :String;
  623. /** Shorthand for the "text-indent" CSS property. */
  624. var textIndent :String;
  625. /** Shorthand for the "text-justify" CSS property. */
  626. var textJustify :String;
  627. /** Shorthand for the "text-orientation" CSS property. */
  628. var textOrientation :String;
  629. /** Shorthand for the "text-overflow" CSS property. */
  630. var textOverflow :String;
  631. /** Shorthand for the "text-shadow" CSS property. */
  632. var textShadow :String;
  633. /** Shorthand for the "text-space-collapse" CSS property. */
  634. var textSpaceCollapse :String;
  635. /** Shorthand for the "text-transform" CSS property. */
  636. var textTransform :String;
  637. /** Shorthand for the "text-underline-position" CSS property. */
  638. var textUnderlinePosition :String;
  639. /** Shorthand for the "text-wrap" CSS property. */
  640. var textWrap :String;
  641. /** Shorthand for the "top" CSS property. */
  642. var top :String;
  643. /** Shorthand for the "transform" CSS property. */
  644. var transform :String;
  645. /** Shorthand for the "transform-origin" CSS property. */
  646. var transformOrigin :String;
  647. /** Shorthand for the "transform-style" CSS property. */
  648. var transformStyle :String;
  649. /** Shorthand for the "transition" CSS property. */
  650. var transition :String;
  651. /** Shorthand for the "transition-delay" CSS property. */
  652. var transitionDelay :String;
  653. /** Shorthand for the "transition-duration" CSS property. */
  654. var transitionDuration :String;
  655. /** Shorthand for the "transition-property" CSS property. */
  656. var transitionProperty :String;
  657. /** Shorthand for the "transition-timing-function" CSS property. */
  658. var transitionTimingFunction :String;
  659. /** Shorthand for the "unicode-bidi" CSS property. */
  660. var unicodeBidi :String;
  661. /** Shorthand for the "vertical-align" CSS property. */
  662. var verticalAlign :String;
  663. /** Shorthand for the "visibility" CSS property. */
  664. var visibility :String;
  665. /** Shorthand for the "voice-balance" CSS property. */
  666. var voiceBalance :String;
  667. /** Shorthand for the "voice-duration" CSS property. */
  668. var voiceDuration :String;
  669. /** Shorthand for the "voice-family" CSS property. */
  670. var voiceFamily :String;
  671. /** Shorthand for the "voice-pitch" CSS property. */
  672. var voicePitch :String;
  673. /** Shorthand for the "voice-range" CSS property. */
  674. var voiceRange :String;
  675. /** Shorthand for the "voice-rate" CSS property. */
  676. var voiceRate :String;
  677. /** Shorthand for the "voice-stress" CSS property. */
  678. var voiceStress :String;
  679. /** Shorthand for the "voice-volume" CSS property. */
  680. var voiceVolume :String;
  681. /** Shorthand for the "volume" CSS property. */
  682. var volume :String;
  683. /** Shorthand for the "white-space" CSS property. */
  684. var whiteSpace :String;
  685. /** Shorthand for the "widows" CSS property. */
  686. var widows :String;
  687. /** Shorthand for the "width" CSS property. */
  688. var width :String;
  689. /** Shorthand for the "will-change" CSS property. */
  690. var willChange :String;
  691. /** Shorthand for the "word-break" CSS property. */
  692. var wordBreak :String;
  693. /** Shorthand for the "word-spacing" CSS property. */
  694. var wordSpacing :String;
  695. /** Shorthand for the "word-wrap" CSS property. */
  696. var wordWrap :String;
  697. /** Shorthand for the "wrap-flow" CSS property. */
  698. var wrapFlow :String;
  699. /** Shorthand for the "wrap-through" CSS property. */
  700. var wrapThrough :String;
  701. /** Shorthand for the "writing-mode" CSS property. */
  702. var writingMode :String;
  703. /** Shorthand for the "z-index" CSS property. */
  704. var zIndex :String;
  705. function item( index : Int ) : String;
  706. /** @throws DOMError */
  707. function getPropertyValue( property : String ) : String;
  708. /** @throws DOMError */
  709. function getPropertyCSSValue( property : String ) : CSSValue;
  710. function getPropertyPriority( property : String ) : String;
  711. /** @throws DOMError */
  712. function setProperty( property : String, value : String, ?priority : String = "" ) : Void;
  713. /** @throws DOMError */
  714. function removeProperty( property : String ) : String;
  715. }