[pypy-svn] r29987 - pypy/dist/pypy/translator/js/modules

fijal at codespeak.net fijal at codespeak.net
Wed Jul 12 16:59:13 CEST 2006


Author: fijal
Date: Wed Jul 12 16:59:09 2006
New Revision: 29987

Modified:
   pypy/dist/pypy/translator/js/modules/_dom.py
Log:
Added style fields.


Modified: pypy/dist/pypy/translator/js/modules/_dom.py
==============================================================================
--- pypy/dist/pypy/translator/js/modules/_dom.py	(original)
+++ pypy/dist/pypy/translator/js/modules/_dom.py	Wed Jul 12 16:59:09 2006
@@ -34,7 +34,135 @@
     pass
 
 class Style(BasicExternal):
-    pass
+    _fields = {
+        'azimuth' : 'aa',
+        'background' : 'aa',
+        'backgroundAttachment' : 'aa',
+        'backgroundColor' : 'aa',
+        'backgroundImage' : 'aa',
+        'backgroundPosition' : 'aa',
+        'backgroundRepeat' : 'aa',
+        'border' : 'aa',
+        'borderBottom' : 'aa',
+        'borderBottomColor' : 'aa',
+        'borderBottomStyle' : 'aa',
+        'borderBottomWidth' : 'aa',
+        'borderCollapse' : 'aa',
+        'borderColor' : 'aa',
+        'borderLeft' : 'aa',
+        'borderLeftColor' : 'aa',
+        'borderLeftStyle' : 'aa',
+        'borderLeftWidth' : 'aa',
+        'borderRight' : 'aa',
+        'borderRightColor' : 'aa',
+        'borderRightStyle' : 'aa',
+        'borderRightWidth' : 'aa',
+        'borderSpacing' : 'aa',
+        'borderStyle' : 'aa',
+        'borderTop' : 'aa',
+        'borderTopColor' : 'aa',
+        'borderTopStyle' : 'aa',
+        'borderTopWidth' : 'aa',
+        'borderWidth' : 'aa',
+        'bottom' : 'aa',
+        'captionSide' : 'aa',
+        'clear' : 'aa',
+        'clip' : 'aa',
+        'color' : 'aa',
+        'content' : 'aa',
+        'counterIncrement' : 'aa',
+        'counterReset' : 'aa',
+        'cssFloat' : 'aa',
+        'cssText' : 'aa',
+        'cue' : 'aa',
+        'cueAfter' : 'aa',
+        'onBefore' : 'aa',
+        'cursor' : 'aa',
+        'direction' : 'aa',
+        'displays' : 'aa',
+        'elevation' : 'aa',
+        'emptyCells' : 'aa',
+        'font' : 'aa',
+        'fontFamily' : 'aa',
+        'fontSize' : 'aa',
+        'fontSizeAdjust' : 'aa',
+        'fontStretch' : 'aa',
+        'fontStyle' : 'aa',
+        'fontVariant' : 'aa',
+        'fontWeight' : 'aa',
+        'height' : 'aa',
+        'left' : 'aa',
+        'length' : 'aa',
+        'letterSpacing' : 'aa',
+        'lineHeight' : 'aa',
+        'listStyle' : 'aa',
+        'listStyleImage' : 'aa',
+        'listStylePosition' : 'aa',
+        'listStyleType' : 'aa',
+        'margin' : 'aa',
+        'marginBottom' : 'aa',
+        'marginLeft' : 'aa',
+        'marginRight' : 'aa',
+        'marginTop' : 'aa',
+        'markerOffset' : 'aa',
+        'marks' : 'aa',
+        'maxHeight' : 'aa',
+        'maxWidth' : 'aa',
+        'minHeight' : 'aa',
+        'minWidth' : 'aa',
+        'MozBinding' : 'aa',
+        'MozOpacity' : 'aa',
+        'orphans' : 'aa',
+        'outline' : 'aa',
+        'outlineColor' : 'aa',
+        'outlineStyle' : 'aa',
+        'outlineWidth' : 'aa',
+        'overflow' : 'aa',
+        'padding' : 'aa',
+        'paddingBottom' : 'aa',
+        'paddingLeft' : 'aa',
+        'paddingRight' : 'aa',
+        'paddingTop' : 'aa',
+        'page' : 'aa',
+        'pageBreakAfter' : 'aa',
+        'pageBreakBefore' : 'aa',
+        'pageBreakInside' : 'aa',
+        'parentRule' : 'aa',
+        'pause' : 'aa',
+        'pauseAfter' : 'aa',
+        'pauseBefore' : 'aa',
+        'pitch' : 'aa',
+        'pitchRange' : 'aa',
+        'playDuring' : 'aa',
+        'position' : 'aa',
+        'quotes' : 'aa',
+        'richness' : 'aa',
+        'right' : 'aa',
+        'size' : 'aa',
+        'speak' : 'aa',
+        'speakHeader' : 'aa',
+        'speakNumeral' : 'aa',
+        'speakPunctuation' : 'aa',
+        'speechRate' : 'aa',
+        'stress' : 'aa',
+        'tableLayout' : 'aa',
+        'textAlign' : 'aa',
+        'textDecoration' : 'aa',
+        'textIndent' : 'aa',
+        'textShadow' : 'aa',
+        'textTransform' : 'aa',
+        'top' : 'aa',
+        'unicodeBidi' : 'aa',
+        'verticalAlign' : 'aa',
+        'visibility' : 'aa',
+        'voiceFamily' : 'aa',
+        'volume' : 'aa',
+        'whiteSpace' : 'aa',
+        'widows' : 'aa',
+        'width' : 'aa',
+        'wordSpacing' : 'aa',
+        'zIndex' : 'aa',
+    }
 
 Element._fields = {
         'attributes' : [Attribute()],



More information about the Pypy-commit mailing list