sig
  module Xml :
    sig
      module W :
        sig
          type 'a t = 'a
          val return : '-> 'a t
          type ('a, 'b) ft = '-> 'b
          val fmap : ('a, 'b) ft -> 'a t -> 'b t
          type 'a tlist = 'a list
          val nil : unit -> 'a tlist
          val singleton : 'a t -> 'a tlist
          val cons : 'a t -> 'a tlist -> 'a tlist
          val append : 'a tlist -> 'a tlist -> 'a tlist
          val map : ('a, 'b) ft -> 'a tlist -> 'b tlist
        end
      type uri = string
      val uri_of_string : uri -> string
      val string_of_uri : string -> uri
      val uri_of_fun : (unit -> string) -> uri
      type aname = string
      type attrib
      type caml_event_handler =
          CE_registered_closure of string * Eliom_lib.poly
        | CE_client_closure of
            (Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit)
        | CE_client_closure_mouse of
            (Js_of_ocaml.Dom_html.mouseEvent Js_of_ocaml.Js.t -> unit)
        | CE_client_closure_keyboard of
            (Js_of_ocaml.Dom_html.keyboardEvent Js_of_ocaml.Js.t -> unit)
        | CE_client_closure_touch of
            (Js_of_ocaml.Dom_html.touchEvent Js_of_ocaml.Js.t -> unit)
        | CE_call_service of
            ([ `A | `Form_get | `Form_post ] * (bool * string list) option *
             string option * Ocsigen_lib_base.poly)
            option Eliom_lazy.request
      type internal_event_handler =
          Raw of string
        | Caml of caml_event_handler
      type event_handler =
          Js_of_ocaml.Dom_html.event Js_of_ocaml.Js.t -> unit
      type mouse_event_handler =
          Js_of_ocaml.Dom_html.mouseEvent Js_of_ocaml.Js.t -> unit
      type keyboard_event_handler =
          Js_of_ocaml.Dom_html.keyboardEvent Js_of_ocaml.Js.t -> unit
      type touch_event_handler =
          Js_of_ocaml.Dom_html.touchEvent Js_of_ocaml.Js.t -> unit
      type ename = string
      type elt
      type 'a wrap = 'a
      type 'a list_wrap = 'a list
      type econtent = private
          Empty
        | Comment of string
        | EncodedPCDATA of string
        | PCDATA of string
        | Entity of string
        | Leaf of ename * attrib list
        | Node of ename * attrib list * elt list
      val internal_event_handler_of_service :
        ([ `A | `Form_get | `Form_post ] * (bool * string list) option *
         string option * Eliom_lib.poly)
        option Eliom_lazy.request -> internal_event_handler
      type separator = Space | Comma
      type acontent = private
          AFloat of float
        | AInt of int
        | AStr of string
        | AStrL of separator * string list
      val acontent : attrib -> acontent
      type racontent =
          RA of acontent
        | RAReact of acontent option React.signal
        | RACamlEventHandler of caml_event_handler
        | RALazyStr of string Eliom_lazy.request
        | RALazyStrL of separator * string Eliom_lazy.request list
        | RAClient of string * attrib option * Eliom_lib.poly
      val racontent : attrib -> racontent
      val aname : attrib -> aname
      val float_attrib : aname -> float -> attrib
      val int_attrib : aname -> int -> attrib
      val string_attrib : aname -> string -> attrib
      val space_sep_attrib : aname -> string list -> attrib
      val comma_sep_attrib : aname -> string list -> attrib
      val internal_event_handler_attrib :
        aname -> internal_event_handler -> attrib
      val event_handler_attrib : aname -> event_handler -> attrib
      val mouse_event_handler_attrib : aname -> mouse_event_handler -> attrib
      val keyboard_event_handler_attrib :
        aname -> keyboard_event_handler -> attrib
      val touch_event_handler_attrib : aname -> touch_event_handler -> attrib
      val uri_attrib : aname -> uri -> attrib
      val uris_attrib : aname -> uri list -> attrib
      val content : elt -> econtent
      val pcdata : string -> elt
      val encodedpcdata : string -> elt
      val entity : string -> elt
      val empty : unit -> elt
      val comment : string -> elt
      val leaf : ?a:attrib list -> ename -> elt
      val node : ?a:attrib list -> ename -> elt list -> elt
      val lazy_node :
        ?a:attrib list -> ename -> elt list Eliom_lazy.request -> elt
      val cdata : string -> elt
      val cdata_script : string -> elt
      val cdata_style : string -> elt
      type node_id = NoId | ProcessId of string | RequestId of string
      val string_of_node_id : node_id -> string
      val make : ?id:node_id -> econtent -> elt
      val make_dom :
        ?id:node_id -> Js_of_ocaml.Dom.node Js_of_ocaml.Js.t -> elt
      val make_lazy : ?id:node_id -> elt lazy_t -> elt
      val force_lazy : elt -> unit
      val make_react : ?id:node_id -> elt React.signal -> elt
      val make_process_node : ?id:string -> elt -> elt
      val make_request_node : ?reset:bool -> elt -> elt
      val get_node_id : elt -> node_id
      type node =
          DomNode of Js_of_ocaml.Dom.node Js_of_ocaml.Js.t
        | TyXMLNode of econtent
        | ReactNode of elt React.signal
        | ReactChildren of econtent * elt ReactiveData.RList.t
      val get_node : elt -> node
      val set_dom_node : elt -> Js_of_ocaml.Dom.node Js_of_ocaml.Js.t -> unit
      val set_classes_of_elt : elt -> elt
    end
  module Svg :
    sig
      type +'a elt
      type +'a attrib
      type uri = Eliom_content.Xml.uri
      module F :
        sig
          module Raw :
            sig
              type 'a elt = 'a elt
              type doc = [ `Svg ] elt
              type 'a attrib = 'a attrib
              module Xml :
                sig
                  module W :
                    sig
                      type 'a t = 'Xml.W.t
                      val return : '-> 'a t
                      type ('a, 'b) ft = ('a, 'b) Xml.W.ft
                      val fmap : ('a, 'b) ft -> 'a t -> 'b t
                      type 'a tlist = 'Xml.W.tlist
                      val nil : unit -> 'a tlist
                      val singleton : 'a t -> 'a tlist
                      val cons : 'a t -> 'a tlist -> 'a tlist
                      val append : 'a tlist -> 'a tlist -> 'a tlist
                      val map : ('a, 'b) ft -> 'a tlist -> 'b tlist
                    end
                  type 'a wrap = 'W.t
                  type 'a list_wrap = 'W.tlist
                  type uri = Xml.uri
                  val string_of_uri : (uri, string) W.ft
                  val uri_of_string : (string, uri) W.ft
                  type aname = string
                  type event_handler = Xml.event_handler
                  type mouse_event_handler = Xml.mouse_event_handler
                  type keyboard_event_handler = Xml.keyboard_event_handler
                  type touch_event_handler = Xml.touch_event_handler
                  type attrib = Xml.attrib
                  val float_attrib : aname -> float wrap -> attrib
                  val int_attrib : aname -> int wrap -> attrib
                  val string_attrib : aname -> string wrap -> attrib
                  val space_sep_attrib : aname -> string list wrap -> attrib
                  val comma_sep_attrib : aname -> string list wrap -> attrib
                  val event_handler_attrib : aname -> event_handler -> attrib
                  val mouse_event_handler_attrib :
                    aname -> mouse_event_handler -> attrib
                  val keyboard_event_handler_attrib :
                    aname -> keyboard_event_handler -> attrib
                  val touch_event_handler_attrib :
                    aname -> touch_event_handler -> attrib
                  val uri_attrib : aname -> uri wrap -> attrib
                  val uris_attrib : aname -> uri list wrap -> attrib
                  type elt = Xml.elt
                  type ename = string
                  val empty : unit -> elt
                  val comment : string -> elt
                  val pcdata : string wrap -> elt
                  val encodedpcdata : string wrap -> elt
                  val entity : string -> elt
                  val leaf : ?a:attrib list -> ename -> elt
                  val node : ?a:attrib list -> ename -> elt list_wrap -> elt
                  val cdata : string -> elt
                  val cdata_script : string -> elt
                  val cdata_style : string -> elt
                end
              type 'a wrap = 'Xml.W.t
              type 'a list_wrap = 'Xml.W.tlist
              type ('a, 'b) nullary = ?a:'a attrib list -> unit -> 'b elt
              type ('a, 'b, 'c) unary =
                  ?a:'a attrib list -> 'b elt wrap -> 'c elt
              type ('a, 'b, 'c) star =
                  ?a:'a attrib list -> 'b elt list_wrap -> 'c elt
              module Info : Xml_sigs.Info
              type uri = Xml.uri
              val string_of_uri : (uri, string) Xml.W.ft
              val uri_of_string : (string, uri) Xml.W.ft
              val a_version : string wrap -> [> `Version ] attrib
              val a_baseProfile : string wrap -> [> `BaseProfile ] attrib
              val a_x : Svg_types.coord wrap -> [> `X ] attrib
              val a_y : Svg_types.coord wrap -> [> `Y ] attrib
              val a_width : Svg_types.Unit.length wrap -> [> `Width ] attrib
              val a_height :
                Svg_types.Unit.length wrap -> [> `Height ] attrib
              val a_preserveAspectRatio :
                string wrap -> [> `PreserveAspectRatio ] attrib
              val a_contentScriptType :
                string wrap -> [> `ContentScriptType ] attrib
              val a_contentStyleType :
                string wrap -> [> `ContentStyleType ] attrib
              val a_zoomAndPan :
                [< `Disable | `Magnify ] wrap -> [> `ZoomAndSpan ] attrib
              val a_href : Svg_types.iri wrap -> [> `Xlink_href ] attrib
              val a_xlink_href :
                Svg_types.iri wrap -> [> `Xlink_href ] attrib
              val a_requiredFeatures :
                Svg_types.spacestrings wrap -> [> `RequiredFeatures ] attrib
              val a_requiredExtensions :
                Svg_types.spacestrings wrap -> [> `RequiredExtension ] attrib
              val a_systemLanguage :
                Svg_types.commastrings wrap -> [> `SystemLanguage ] attrib
              val a_externalRessourcesRequired :
                bool wrap -> [> `ExternalRessourcesRequired ] attrib
              val a_id : string wrap -> [> `Id ] attrib
              val a_user_data :
                string -> string wrap -> [> `User_data ] attrib
              val a_xml_base : Svg_types.iri wrap -> [> `Xml_Base ] attrib
              val a_xml_lang : Svg_types.iri wrap -> [> `Xml_Lang ] attrib
              val a_xml_space :
                [< `Default | `Preserve ] wrap -> [> `Xml_Space ] attrib
              val a_type : string wrap -> [> `Type ] attrib
              val a_media : Svg_types.commastrings wrap -> [> `Media ] attrib
              val a_xlink_title : string wrap -> [> `Title ] attrib
              val a_class : Svg_types.spacestrings wrap -> [> `Class ] attrib
              val a_style : string wrap -> [> `Style ] attrib
              val a_transform :
                Svg_types.transforms wrap -> [> `Transform ] attrib
              val a_viewBox :
                Svg_types.fourfloats wrap -> [> `ViewBox ] attrib
              val a_d : string wrap -> [> `D ] attrib
              val a_pathLength : float wrap -> [> `PathLength ] attrib
              val a_rx : Svg_types.Unit.length wrap -> [> `Rx ] attrib
              val a_ry : Svg_types.Unit.length wrap -> [> `Ry ] attrib
              val a_cx : Svg_types.Unit.length wrap -> [> `Cx ] attrib
              val a_cy : Svg_types.Unit.length wrap -> [> `Cy ] attrib
              val a_r : Svg_types.Unit.length wrap -> [> `R ] attrib
              val a_x1 : Svg_types.coord wrap -> [> `X1 ] attrib
              val a_y1 : Svg_types.coord wrap -> [> `Y1 ] attrib
              val a_x2 : Svg_types.coord wrap -> [> `X2 ] attrib
              val a_y2 : Svg_types.coord wrap -> [> `Y2 ] attrib
              val a_points : Svg_types.coords wrap -> [> `Points ] attrib
              val a_x_list : Svg_types.lengths wrap -> [> `X_list ] attrib
              val a_y_list : Svg_types.lengths wrap -> [> `Y_list ] attrib
              val a_dx : Svg_types.number wrap -> [> `Dx ] attrib
              val a_dy : Svg_types.number wrap -> [> `Dy ] attrib
              val a_dx_list : Svg_types.lengths wrap -> [> `Dx_list ] attrib
              val a_dy_list : Svg_types.lengths wrap -> [> `Dy_list ] attrib
              val a_lengthAdjust :
                [< `Spacing | `SpacingAndGlyphs ] wrap ->
                [> `LengthAdjust ] attrib
              val a_textLength :
                Svg_types.Unit.length wrap -> [> `TextLength ] attrib
              val a_text_anchor :
                [< `End | `Inherit | `Middle | `Start ] wrap ->
                [> `Text_Anchor ] attrib
              val a_text_decoration :
                [< `Blink
                 | `Inherit
                 | `Line_through
                 | `None
                 | `Overline
                 | `Underline ]
                wrap -> [> `Text_Decoration ] attrib
              val a_text_rendering :
                [< `Auto
                 | `GeometricPrecision
                 | `Inherit
                 | `OptimizeLegibility
                 | `OptimizeSpeed ]
                wrap -> [> `Text_Rendering ] attrib
              val a_rotate : Svg_types.numbers wrap -> [> `Rotate ] attrib
              val a_startOffset :
                Svg_types.Unit.length wrap -> [> `StartOffset ] attrib
              val a_method :
                [< `Align | `Stretch ] wrap -> [> `Method ] attrib
              val a_spacing :
                [< `Auto | `Exact ] wrap -> [> `Spacing ] attrib
              val a_glyphRef : string wrap -> [> `GlyphRef ] attrib
              val a_format : string wrap -> [> `Format ] attrib
              val a_markerUnits :
                [< `StrokeWidth | `UserSpaceOnUse ] wrap ->
                [> `MarkerUnits ] attrib
              val a_refX : Svg_types.coord wrap -> [> `RefX ] attrib
              val a_refY : Svg_types.coord wrap -> [> `RefY ] attrib
              val a_markerWidth :
                Svg_types.Unit.length wrap -> [> `MarkerWidth ] attrib
              val a_markerHeight :
                Svg_types.Unit.length wrap -> [> `MarkerHeight ] attrib
              val a_orient :
                Svg_types.Unit.angle option wrap -> [> `Orient ] attrib
              val a_local : string wrap -> [> `Local ] attrib
              val a_rendering_intent :
                [< `Absolute_colorimetric
                 | `Auto
                 | `Perceptual
                 | `Relative_colorimetric
                 | `Saturation ]
                wrap -> [> `Rendering_Indent ] attrib
              val a_gradientUnits :
                [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
                [ `GradientUnits ] attrib
              val a_gradientTransform :
                Svg_types.transforms wrap -> [> `Gradient_Transform ] attrib
              val a_spreadMethod :
                [< `Pad | `Reflect | `Repeat ] wrap ->
                [> `SpreadMethod ] attrib
              val a_fx : Svg_types.coord wrap -> [> `Fx ] attrib
              val a_fy : Svg_types.coord wrap -> [> `Fy ] attrib
              val a_offset :
                [< `Number of Svg_types.number
                 | `Percentage of Svg_types.percentage ]
                wrap -> [> `Offset ] attrib
              val a_patternUnits :
                [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
                [> `PatternUnits ] attrib
              val a_patternContentUnits :
                [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
                [> `PatternContentUnits ] attrib
              val a_patternTransform :
                Svg_types.transforms wrap -> [> `PatternTransform ] attrib
              val a_clipPathUnits :
                [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
                [> `ClipPathUnits ] attrib
              val a_maskUnits :
                [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
                [> `MaskUnits ] attrib
              val a_maskContentUnits :
                [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
                [> `MaskContentUnits ] attrib
              val a_primitiveUnits :
                [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
                [> `PrimitiveUnits ] attrib
              val a_filterRes :
                Svg_types.number_optional_number wrap ->
                [> `FilterResUnits ] attrib
              val a_result : string wrap -> [> `Result ] attrib
              val a_in :
                [< `BackgroundAlpha
                 | `BackgroundImage
                 | `FillPaint
                 | `Ref of string
                 | `SourceAlpha
                 | `SourceGraphic
                 | `StrokePaint ]
                wrap -> [> `In ] attrib
              val a_in2 :
                [< `BackgroundAlpha
                 | `BackgroundImage
                 | `FillPaint
                 | `Ref of string
                 | `SourceAlpha
                 | `SourceGraphic
                 | `StrokePaint ]
                wrap -> [> `In2 ] attrib
              val a_azimuth : float wrap -> [> `Azimuth ] attrib
              val a_elevation : float wrap -> [> `Elevation ] attrib
              val a_pointsAtX : float wrap -> [> `PointsAtX ] attrib
              val a_pointsAtY : float wrap -> [> `PointsAtY ] attrib
              val a_pointsAtZ : float wrap -> [> `PointsAtZ ] attrib
              val a_specularExponent :
                float wrap -> [> `SpecularExponent ] attrib
              val a_specularConstant :
                float wrap -> [> `SpecularConstant ] attrib
              val a_limitingConeAngle :
                float wrap -> [> `LimitingConeAngle ] attrib
              val a_mode :
                [< `Darken | `Lighten | `Multiply | `Normal | `Screen ] wrap ->
                [> `Mode ] attrib
              val a_feColorMatrix_type :
                [< `HueRotate | `LuminanceToAlpha | `Matrix | `Saturate ]
                wrap -> [> `Typefecolor ] attrib
              val a_values : Svg_types.numbers wrap -> [> `Values ] attrib
              val a_transfer_type :
                [< `Discrete | `Gamma | `Identity | `Linear | `Table ] wrap ->
                [> `Type_transfert ] attrib
              val a_tableValues :
                Svg_types.numbers wrap -> [> `TableValues ] attrib
              val a_intercept :
                Svg_types.number wrap -> [> `Intercept ] attrib
              val a_amplitude :
                Svg_types.number wrap -> [> `Amplitude ] attrib
              val a_exponent : Svg_types.number wrap -> [> `Exponent ] attrib
              val a_transfer_offset :
                Svg_types.number wrap -> [> `Offset_transfer ] attrib
              val a_feComposite_operator :
                [< `Arithmetic | `Atop | `In | `Out | `Over | `Xor ] wrap ->
                [> `OperatorComposite ] attrib
              val a_k1 : Svg_types.number wrap -> [> `K1 ] attrib
              val a_k2 : Svg_types.number wrap -> [> `K2 ] attrib
              val a_k3 : Svg_types.number wrap -> [> `K3 ] attrib
              val a_k4 : Svg_types.number wrap -> [> `K4 ] attrib
              val a_order :
                Svg_types.number_optional_number wrap -> [> `Order ] attrib
              val a_kernelMatrix :
                Svg_types.numbers wrap -> [> `KernelMatrix ] attrib
              val a_divisor : Svg_types.number wrap -> [> `Divisor ] attrib
              val a_bias : Svg_types.number wrap -> [> `Bias ] attrib
              val a_kernelUnitLength :
                Svg_types.number_optional_number wrap ->
                [> `KernelUnitLength ] attrib
              val a_targetX : int wrap -> [> `TargetX ] attrib
              val a_targetY : int wrap -> [> `TargetY ] attrib
              val a_edgeMode :
                [< `Duplicate | `None | `Wrap ] wrap -> [> `TargetY ] attrib
              val a_preserveAlpha : bool wrap -> [> `TargetY ] attrib
              val a_surfaceScale :
                Svg_types.number wrap -> [> `SurfaceScale ] attrib
              val a_diffuseConstant :
                Svg_types.number wrap -> [> `DiffuseConstant ] attrib
              val a_scale : Svg_types.number wrap -> [> `Scale ] attrib
              val a_xChannelSelector :
                [< `A | `B | `G | `R ] wrap -> [> `XChannelSelector ] attrib
              val a_yChannelSelector :
                [< `A | `B | `G | `R ] wrap -> [> `YChannelSelector ] attrib
              val a_stdDeviation :
                Svg_types.number_optional_number wrap ->
                [> `StdDeviation ] attrib
              val a_feMorphology_operator :
                [< `Dilate | `Erode ] wrap -> [> `OperatorMorphology ] attrib
              val a_radius :
                Svg_types.number_optional_number wrap -> [> `Radius ] attrib
              val a_baseFrenquency :
                Svg_types.number_optional_number wrap ->
                [> `BaseFrequency ] attrib
              val a_numOctaves : int wrap -> [> `NumOctaves ] attrib
              val a_seed : Svg_types.number wrap -> [> `Seed ] attrib
              val a_stitchTiles :
                [< `NoStitch | `Stitch ] wrap -> [> `StitchTiles ] attrib
              val a_feTurbulence_type :
                [< `FractalNoise | `Turbulence ] wrap ->
                [> `TypeStitch ] attrib
              val a_xlink_show :
                [< `New | `Replace ] wrap -> [> `Xlink_show ] attrib
              val a_xlink_actuate :
                [< `None | `OnLoad | `OnRequest | `Other ] wrap ->
                [> `Xlink_actuate ] attrib
              val a_target : string wrap -> [> `Xlink_target ] attrib
              val a_viewTarget : string wrap -> [> `ViewTarget ] attrib
              val a_attributeName : string wrap -> [> `AttributeName ] attrib
              val a_attributeType :
                [< `Auto | `CSS | `XML ] wrap -> [> `AttributeType ] attrib
              val a_begin : string wrap -> [> `Begin ] attrib
              val a_dur : string wrap -> [> `Dur ] attrib
              val a_min : string wrap -> [> `Min ] attrib
              val a_max : string wrap -> [> `Max ] attrib
              val a_restart :
                [< `Always | `Never | `WhenNotActive ] wrap ->
                [> `Restart ] attrib
              val a_repeatCount : string wrap -> [> `RepeatCount ] attrib
              val a_repeatDur : string wrap -> [> `RepeatDur ] attrib
              val a_fill : Svg_types.paint wrap -> [> `Fill ] attrib
              val a_animation_fill :
                [< `Freeze | `Remove ] wrap -> [> `Fill_Animation ] attrib
              val a_calcMode :
                [< `Discrete | `Linear | `Paced | `Spline ] wrap ->
                [> `CalcMode ] attrib
              val a_animation_values :
                Svg_types.strings wrap -> [> `Valuesanim ] attrib
              val a_keyTimes :
                Svg_types.strings wrap -> [> `KeyTimes ] attrib
              val a_keySplines :
                Svg_types.strings wrap -> [> `KeySplines ] attrib
              val a_from : string wrap -> [> `From ] attrib
              val a_to : string wrap -> [> `To ] attrib
              val a_by : string wrap -> [> `By ] attrib
              val a_additive :
                [< `Replace | `Sum ] wrap -> [> `Additive ] attrib
              val a_accumulate :
                [< `None | `Sum ] wrap -> [> `Accumulate ] attrib
              val a_keyPoints :
                Svg_types.numbers_semicolon wrap -> [> `KeyPoints ] attrib
              val a_path : string wrap -> [> `Path ] attrib
              val a_animateTransform_type :
                [ `Rotate | `Scale | `SkewX | `SkewY | `Translate ] wrap ->
                [ `Typeanimatetransform ] attrib
              val a_horiz_origin_x :
                Svg_types.number wrap -> [> `HorizOriginX ] attrib
              val a_horiz_origin_y :
                Svg_types.number wrap -> [> `HorizOriginY ] attrib
              val a_horiz_adv_x :
                Svg_types.number wrap -> [> `HorizAdvX ] attrib
              val a_vert_origin_x :
                Svg_types.number wrap -> [> `VertOriginX ] attrib
              val a_vert_origin_y :
                Svg_types.number wrap -> [> `VertOriginY ] attrib
              val a_vert_adv_y :
                Svg_types.number wrap -> [> `VertAdvY ] attrib
              val a_unicode : string wrap -> [> `Unicode ] attrib
              val a_glyph_name : string wrap -> [> `glyphname ] attrib
              val a_orientation :
                [< `H | `V ] wrap -> [> `Orientation ] attrib
              val a_arabic_form :
                [< `Initial | `Isolated | `Medial | `Terminal ] wrap ->
                [> `Arabicform ] attrib
              val a_lang : string wrap -> [> `Lang ] attrib
              val a_u1 : string wrap -> [> `U1 ] attrib
              val a_u2 : string wrap -> [> `U2 ] attrib
              val a_g1 : string wrap -> [> `G1 ] attrib
              val a_g2 : string wrap -> [> `G2 ] attrib
              val a_k : string wrap -> [> `K ] attrib
              val a_font_family : string wrap -> [> `Font_Family ] attrib
              val a_font_style : string wrap -> [> `Font_Style ] attrib
              val a_font_variant : string wrap -> [> `Font_Variant ] attrib
              val a_font_weight : string wrap -> [> `Font_Weight ] attrib
              val a_font_stretch : string wrap -> [> `Font_Stretch ] attrib
              val a_font_size : string wrap -> [> `Font_Size ] attrib
              val a_unicode_range : string wrap -> [> `UnicodeRange ] attrib
              val a_units_per_em : string wrap -> [> `UnitsPerEm ] attrib
              val a_stemv : Svg_types.number wrap -> [> `Stemv ] attrib
              val a_stemh : Svg_types.number wrap -> [> `Stemh ] attrib
              val a_slope : Svg_types.number wrap -> [> `Slope ] attrib
              val a_cap_height :
                Svg_types.number wrap -> [> `CapHeight ] attrib
              val a_x_height : Svg_types.number wrap -> [> `XHeight ] attrib
              val a_accent_height :
                Svg_types.number wrap -> [> `AccentHeight ] attrib
              val a_ascent : Svg_types.number wrap -> [> `Ascent ] attrib
              val a_widths : string wrap -> [> `Widths ] attrib
              val a_bbox : string wrap -> [> `Bbox ] attrib
              val a_ideographic :
                Svg_types.number wrap -> [> `Ideographic ] attrib
              val a_alphabetic :
                Svg_types.number wrap -> [> `Alphabetic ] attrib
              val a_mathematical :
                Svg_types.number wrap -> [> `Mathematical ] attrib
              val a_hanging : Svg_types.number wrap -> [> `Hanging ] attrib
              val a_videographic :
                Svg_types.number wrap -> [> `VIdeographic ] attrib
              val a_v_alphabetic :
                Svg_types.number wrap -> [> `VAlphabetic ] attrib
              val a_v_mathematical :
                Svg_types.number wrap -> [> `VMathematical ] attrib
              val a_v_hanging :
                Svg_types.number wrap -> [> `VHanging ] attrib
              val a_underline_position :
                Svg_types.number wrap -> [> `UnderlinePosition ] attrib
              val a_underline_thickness :
                Svg_types.number wrap -> [> `UnderlineThickness ] attrib
              val a_strikethrough_position :
                Svg_types.number wrap -> [> `StrikethroughPosition ] attrib
              val a_strikethrough_thickness :
                Svg_types.number wrap -> [> `StrikethroughThickness ] attrib
              val a_overline_position :
                Svg_types.number wrap -> [> `OverlinePosition ] attrib
              val a_overline_thickness :
                Svg_types.number wrap -> [> `OverlineThickness ] attrib
              val a_string : string wrap -> [> `String ] attrib
              val a_name : string wrap -> [> `Name ] attrib
              val a_alignment_baseline :
                [< `After_edge
                 | `Alphabetic
                 | `Auto
                 | `Baseline
                 | `Before_edge
                 | `Central
                 | `Hanging
                 | `Ideographic
                 | `Inherit
                 | `Mathematical
                 | `Middle
                 | `Text_after_edge
                 | `Text_before_edge ]
                wrap -> [> `Alignment_Baseline ] attrib
              val a_dominant_baseline :
                [< `Alphabetic
                 | `Auto
                 | `Central
                 | `Hanging
                 | `Ideographic
                 | `Inherit
                 | `Mathematical
                 | `Middle
                 | `No_change
                 | `Reset_size
                 | `Text_after_edge
                 | `Text_before_edge
                 | `Use_script ]
                wrap -> [> `Dominant_Baseline ] attrib
              val a_stop_color :
                Svg_types.color wrap -> [> `Stop_Color ] attrib
              val a_stop_opacity :
                Svg_types.number wrap -> [> `Stop_Opacity ] attrib
              val a_stroke : Svg_types.paint wrap -> [> `Stroke ] attrib
              val a_stroke_width :
                Svg_types.Unit.length wrap -> [> `Stroke_Width ] attrib
              val a_stroke_linecap :
                [< `Butt | `Round | `Square ] wrap ->
                [> `Stroke_Linecap ] attrib
              val a_stroke_linejoin :
                [< `Bever | `Miter | `Round ] wrap ->
                [> `Stroke_Linejoin ] attrib
              val a_stroke_miterlimit :
                float wrap -> [> `Stroke_Miterlimit ] attrib
              val a_stroke_dasharray :
                Svg_types.Unit.length list wrap ->
                [> `Stroke_Dasharray ] attrib
              val a_stroke_dashoffset :
                Svg_types.Unit.length wrap -> [> `Stroke_Dashoffset ] attrib
              val a_stroke_opacity :
                float wrap -> [> `Stroke_Opacity ] attrib
              val a_onabort : Xml.event_handler -> [> `OnAbort ] attrib
              val a_onactivate : Xml.event_handler -> [> `OnActivate ] attrib
              val a_onbegin : Xml.event_handler -> [> `OnBegin ] attrib
              val a_onend : Xml.event_handler -> [> `OnEnd ] attrib
              val a_onerror : Xml.event_handler -> [> `OnError ] attrib
              val a_onfocusin : Xml.event_handler -> [> `OnFocusIn ] attrib
              val a_onfocusout : Xml.event_handler -> [> `OnFocusOut ] attrib
              val a_onload : Xml.event_handler -> [> `OnLoad ] attrib
              val a_onrepeat : Xml.event_handler -> [> `OnRepeat ] attrib
              val a_onresize : Xml.event_handler -> [> `OnResize ] attrib
              val a_onscroll : Xml.event_handler -> [> `OnScroll ] attrib
              val a_onunload : Xml.event_handler -> [> `OnUnload ] attrib
              val a_onzoom : Xml.event_handler -> [> `OnZoom ] attrib
              val a_onclick : Xml.mouse_event_handler -> [> `OnClick ] attrib
              val a_onmousedown :
                Xml.mouse_event_handler -> [> `OnMouseDown ] attrib
              val a_onmouseup :
                Xml.mouse_event_handler -> [> `OnMouseUp ] attrib
              val a_onmouseover :
                Xml.mouse_event_handler -> [> `OnMouseOver ] attrib
              val a_onmouseout :
                Xml.mouse_event_handler -> [> `OnMouseOut ] attrib
              val a_onmousemove :
                Xml.mouse_event_handler -> [> `OnMouseMove ] attrib
              val a_ontouchstart :
                Xml.touch_event_handler -> [> `OnTouchStart ] attrib
              val a_ontouchend :
                Xml.touch_event_handler -> [> `OnTouchEnd ] attrib
              val a_ontouchmove :
                Xml.touch_event_handler -> [> `OnTouchMove ] attrib
              val a_ontouchcancel :
                Xml.touch_event_handler -> [> `OnTouchCancel ] attrib
              val txt : string wrap -> [> Svg_types.txt ] elt
              val svg :
                ([< Svg_types.svg_attr ], [< Svg_types.svg_content ],
                 [> Svg_types.svg ])
                star
              val g :
                ([< Svg_types.g_attr ], [< Svg_types.g_content ],
                 [> Svg_types.g ])
                star
              val defs :
                ([< Svg_types.defs_attr ], [< Svg_types.defs_content ],
                 [> Svg_types.defs ])
                star
              val desc :
                ([< Svg_types.desc_attr ], [< Svg_types.desc_content ],
                 [> Svg_types.desc ])
                unary
              val title :
                ([< Svg_types.title_attr ], [< Svg_types.title_content ],
                 [> Svg_types.title ])
                unary
              val symbol :
                ([< Svg_types.symbol_attr ], [< Svg_types.symbol_content ],
                 [> Svg_types.symbol ])
                star
              val use :
                ([< Svg_types.use_attr ], [< Svg_types.use_content ],
                 [> Svg_types.use ])
                star
              val image :
                ([< Svg_types.image_attr ], [< Svg_types.image_content ],
                 [> Svg_types.image ])
                star
              val switch :
                ([< Svg_types.switch_attr ], [< Svg_types.switch_content ],
                 [> Svg_types.switch ])
                star
              val style :
                ([< Svg_types.style_attr ], [< Svg_types.style_content ],
                 [> Svg_types.style ])
                unary
              val path :
                ([< Svg_types.path_attr ], [< Svg_types.path_content ],
                 [> Svg_types.path ])
                star
              val rect :
                ([< Svg_types.rect_attr ], [< Svg_types.rect_content ],
                 [> Svg_types.rect ])
                star
              val circle :
                ([< Svg_types.circle_attr ], [< Svg_types.circle_content ],
                 [> Svg_types.circle ])
                star
              val ellipse :
                ([< Svg_types.ellipse_attr ], [< Svg_types.ellipse_content ],
                 [> Svg_types.ellipse ])
                star
              val line :
                ([< Svg_types.line_attr ], [< Svg_types.line_content ],
                 [> Svg_types.line ])
                star
              val polyline :
                ([< Svg_types.polyline_attr ],
                 [< Svg_types.polyline_content ], [> Svg_types.polyline ])
                star
              val polygon :
                ([< Svg_types.polygon_attr ], [< Svg_types.polygon_content ],
                 [> Svg_types.polygon ])
                star
              val text :
                ([< Svg_types.text_attr ], [< Svg_types.text_content ],
                 [> Svg_types.text ])
                star
              val tspan :
                ([< Svg_types.tspan_attr ], [< Svg_types.tspan_content ],
                 [> Svg_types.tspan ])
                star
              val tref :
                ([< Svg_types.tref_attr ], [< Svg_types.tref_content ],
                 [> Svg_types.tref ])
                star
              val textPath :
                ([< Svg_types.textpath_attr ],
                 [< Svg_types.textpath_content ], [> Svg_types.textpath ])
                star
              val altGlyph :
                ([< Svg_types.altglyph_attr ],
                 [< Svg_types.altglyph_content ], [> Svg_types.altglyph ])
                unary
              type altglyphdef_content =
                  [ `Item of Svg_types.altglyphitem elt list
                  | `Ref of Svg_types.glyphref elt list ]
              val altGlyphDef :
                ([< Svg_types.altglyphdef_attr ], [< altglyphdef_content ],
                 [> Svg_types.altglyphdef ])
                unary
              val altGlyphItem :
                ([< Svg_types.altglyphitem_attr ],
                 [< Svg_types.altglyphitem_content ],
                 [> Svg_types.altglyphitem ])
                star
              val glyphRef :
                ([< Svg_types.glyphref_attr ], [> Svg_types.glyphref ])
                nullary
              val marker :
                ([< Svg_types.marker_attr ], [< Svg_types.marker_content ],
                 [> Svg_types.marker ])
                star
              val color_profile :
                ([< Svg_types.colorprofile_attr ],
                 [< Svg_types.colorprofile_content ],
                 [> Svg_types.colorprofile ])
                star
              val linearGradient :
                ([< Svg_types.lineargradient_attr ],
                 [< Svg_types.lineargradient_content ],
                 [> Svg_types.lineargradient ])
                star
              val radialGradient :
                ([< Svg_types.radialgradient_attr ],
                 [< Svg_types.radialgradient_content ],
                 [> Svg_types.radialgradient ])
                star
              val stop :
                ([< Svg_types.stop_attr ], [< Svg_types.stop_content ],
                 [> Svg_types.stop ])
                star
              val pattern :
                ([< Svg_types.pattern_attr ], [< Svg_types.pattern_content ],
                 [> Svg_types.pattern ])
                star
              val clipPath :
                ([< Svg_types.clippath_attr ],
                 [< Svg_types.clippath_content ], [> Svg_types.clippath ])
                star
              val filter :
                ([< Svg_types.filter_attr ], [< Svg_types.filter_content ],
                 [> Svg_types.filter ])
                star
              val feDistantLight :
                ([< Svg_types.fedistantlight_attr ],
                 [< Svg_types.fedistantlight_content ],
                 [> Svg_types.fedistantlight ])
                star
              val fePointLight :
                ([< Svg_types.fepointlight_attr ],
                 [< Svg_types.fepointlight_content ],
                 [> Svg_types.fepointlight ])
                star
              val feSpotLight :
                ([< Svg_types.fespotlight_attr ],
                 [< Svg_types.fespotlight_content ],
                 [> Svg_types.fespotlight ])
                star
              val feBlend :
                ([< Svg_types.feblend_attr ], [< Svg_types.feblend_content ],
                 [> Svg_types.feblend ])
                star
              val feColorMatrix :
                ([< Svg_types.fecolormatrix_attr ],
                 [< Svg_types.fecolormatrix_content ],
                 [> Svg_types.fecolormatrix ])
                star
              val feComponentTransfer :
                ([< Svg_types.fecomponenttransfer_attr ],
                 [< Svg_types.fecomponenttransfer_content ],
                 [> Svg_types.fecomponenttransfer ])
                star
              val feFuncA :
                ([< Svg_types.fefunca_attr ], [< Svg_types.fefunca_content ],
                 [> Svg_types.fefunca ])
                star
              val feFuncG :
                ([< Svg_types.fefuncg_attr ], [< Svg_types.fefuncg_content ],
                 [> Svg_types.fefuncg ])
                star
              val feFuncB :
                ([< Svg_types.fefuncb_attr ], [< Svg_types.fefuncb_content ],
                 [> Svg_types.fefuncb ])
                star
              val feFuncR :
                ([< Svg_types.fefuncr_attr ], [< Svg_types.fefuncr_content ],
                 [> Svg_types.fefuncr ])
                star
              val feComposite :
                ([< Svg_types.fecomposite_attr ],
                 [< Svg_types.fecomposite_content ],
                 [> Svg_types.fecomposite ])
                star
              val feConvolveMatrix :
                ([< Svg_types.feconvolvematrix_attr ],
                 [< Svg_types.feconvolvematrix_content ],
                 [> Svg_types.feconvolvematrix ])
                star
              val feDiffuseLighting :
                ([< Svg_types.fediffuselighting_attr ],
                 [< Svg_types.fediffuselighting_content ],
                 [> Svg_types.fediffuselighting ])
                star
              val feDisplacementMap :
                ([< Svg_types.fedisplacementmap_attr ],
                 [< Svg_types.fedisplacementmap_content ],
                 [> Svg_types.fedisplacementmap ])
                star
              val feFlood :
                ([< Svg_types.feflood_attr ], [< Svg_types.feflood_content ],
                 [> Svg_types.feflood ])
                star
              val feGaussianBlur :
                ([< Svg_types.fegaussianblur_attr ],
                 [< Svg_types.fegaussianblur_content ],
                 [> Svg_types.fegaussianblur ])
                star
              val feImage :
                ([< Svg_types.feimage_attr ], [< Svg_types.feimage_content ],
                 [> Svg_types.feimage ])
                star
              val feMerge :
                ([< Svg_types.femerge_attr ], [< Svg_types.femerge_content ],
                 [> Svg_types.femerge ])
                star
              val feMorphology :
                ([< Svg_types.femorphology_attr ],
                 [< Svg_types.femorphology_content ],
                 [> Svg_types.femorphology ])
                star
              val feOffset :
                ([< Svg_types.feoffset_attr ],
                 [< Svg_types.feoffset_content ], [> Svg_types.feoffset ])
                star
              val feSpecularLighting :
                ([< Svg_types.fespecularlighting_attr ],
                 [< Svg_types.fespecularlighting_content ],
                 [> Svg_types.fespecularlighting ])
                star
              val feTile :
                ([< Svg_types.fetile_attr ], [< Svg_types.fetile_content ],
                 [> Svg_types.fetile ])
                star
              val feTurbulence :
                ([< Svg_types.feturbulence_attr ],
                 [< Svg_types.feturbulence_content ],
                 [> Svg_types.feturbulence ])
                star
              val cursor :
                ([< Svg_types.cursor_attr ], [< Svg_types.cursor_content ],
                 [> Svg_types.cursor ])
                star
              val a :
                ([< Svg_types.a_attr ], [< Svg_types.a_content ],
                 [> Svg_types.a ])
                star
              val view :
                ([< Svg_types.view_attr ], [< Svg_types.view_content ],
                 [> Svg_types.view ])
                star
              val script :
                ([< Svg_types.script_attr ], [< Svg_types.script_content ],
                 [> Svg_types.script ])
                unary
              val animation :
                ([< Svg_types.animation_attr ],
                 [< Svg_types.animation_content ], [> Svg_types.animation ])
                star
              val set :
                ([< Svg_types.set_attr ], [< Svg_types.set_content ],
                 [> Svg_types.set ])
                star
              val animateMotion :
                ([< Svg_types.animatemotion_attr ],
                 [< Svg_types.animatemotion_content ],
                 [> Svg_types.animatemotion ])
                star
              val mpath :
                ([< Svg_types.mpath_attr ], [< Svg_types.mpath_content ],
                 [> Svg_types.mpath ])
                star
              val animateColor :
                ([< Svg_types.animatecolor_attr ],
                 [< Svg_types.animatecolor_content ],
                 [> Svg_types.animatecolor ])
                star
              val animateTransform :
                ([< Svg_types.animatetransform_attr ],
                 [< Svg_types.animatetransform_content ],
                 [> Svg_types.animatetransform ])
                star
              val font :
                ([< Svg_types.font_attr ], [< Svg_types.font_content ],
                 [> Svg_types.font ])
                star
              val glyph :
                ([< Svg_types.glyph_attr ], [< Svg_types.glyph_content ],
                 [> Svg_types.glyph ])
                star
              val missing_glyph :
                ([< Svg_types.missingglyph_attr ],
                 [< Svg_types.missingglyph_content ],
                 [> Svg_types.missingglyph ])
                star
              val hkern :
                ([< Svg_types.hkern_attr ], [> Svg_types.hkern ]) nullary
              val vkern :
                ([< Svg_types.vkern_attr ], [> Svg_types.vkern ]) nullary
              val font_face :
                ([< Svg_types.font_face_attr ], [> Svg_types.font_face ])
                nullary
              val font_face_src :
                ([< Svg_types.font_face_src_attr ],
                 [< Svg_types.font_face_src_content ],
                 [> Svg_types.font_face_src ])
                star
              val font_face_uri :
                ([< Svg_types.font_face_uri_attr ],
                 [< Svg_types.font_face_uri_content ],
                 [> Svg_types.font_face_uri ])
                star
              val font_face_format :
                ([< Svg_types.font_face_format_attr ],
                 [> Svg_types.font_face_format ])
                nullary
              val font_face_name :
                ([< Svg_types.font_face_name_attr ],
                 [> Svg_types.font_face_name ])
                nullary
              val metadata :
                ?a:Svg_types.metadata_attr attrib list ->
                Xml.elt list_wrap -> [> Svg_types.metadata ] elt
              val foreignObject :
                ?a:Svg_types.foreignobject_attr attrib list ->
                Xml.elt list_wrap -> [> Svg_types.foreignobject ] elt
              val pcdata : string wrap -> [> Svg_types.txt ] elt
              val of_seq : Xml_stream.signal Seq.t -> 'a elt list_wrap
              val tot : Xml.elt -> 'a elt
              val totl : Xml.elt list_wrap -> 'a elt list_wrap
              val toelt : 'a elt -> Xml.elt
              val toeltl : 'a elt list_wrap -> Xml.elt list_wrap
              val doc_toelt : doc -> Xml.elt
              val to_xmlattribs : 'a attrib list -> Xml.attrib list
              val to_attrib : Xml.attrib -> 'a attrib
              module Unsafe :
                sig
                  val data : string wrap -> 'a elt
                  val node :
                    string -> ?a:'a attrib list -> 'b elt list_wrap -> 'c elt
                  val leaf : string -> ?a:'a attrib list -> unit -> 'b elt
                  val coerce_elt : 'a elt -> 'b elt
                  val string_attrib : string -> string wrap -> 'a attrib
                  val float_attrib : string -> float wrap -> 'a attrib
                  val int_attrib : string -> int wrap -> 'a attrib
                  val uri_attrib : string -> uri wrap -> 'a attrib
                  val space_sep_attrib :
                    string -> string list wrap -> 'a attrib
                  val comma_sep_attrib :
                    string -> string list wrap -> 'a attrib
                end
            end
          type 'a elt = 'a elt
          type doc = [ `Svg ] elt
          type 'a attrib = 'a attrib
          module Xml :
            sig
              module W :
                sig
                  type 'a t = 'Xml.W.t
                  val return : '-> 'a t
                  type ('a, 'b) ft = ('a, 'b) Xml.W.ft
                  val fmap : ('a, 'b) ft -> 'a t -> 'b t
                  type 'a tlist = 'Xml.W.tlist
                  val nil : unit -> 'a tlist
                  val singleton : 'a t -> 'a tlist
                  val cons : 'a t -> 'a tlist -> 'a tlist
                  val append : 'a tlist -> 'a tlist -> 'a tlist
                  val map : ('a, 'b) ft -> 'a tlist -> 'b tlist
                end
              type 'a wrap = 'W.t
              type 'a list_wrap = 'W.tlist
              type uri = Xml.uri
              val string_of_uri : (uri, string) W.ft
              val uri_of_string : (string, uri) W.ft
              type aname = string
              type event_handler = Xml.event_handler
              type mouse_event_handler = Xml.mouse_event_handler
              type keyboard_event_handler = Xml.keyboard_event_handler
              type touch_event_handler = Xml.touch_event_handler
              type attrib = Xml.attrib
              val float_attrib : aname -> float wrap -> attrib
              val int_attrib : aname -> int wrap -> attrib
              val string_attrib : aname -> string wrap -> attrib
              val space_sep_attrib : aname -> string list wrap -> attrib
              val comma_sep_attrib : aname -> string list wrap -> attrib
              val event_handler_attrib : aname -> event_handler -> attrib
              val mouse_event_handler_attrib :
                aname -> mouse_event_handler -> attrib
              val keyboard_event_handler_attrib :
                aname -> keyboard_event_handler -> attrib
              val touch_event_handler_attrib :
                aname -> touch_event_handler -> attrib
              val uri_attrib : aname -> uri wrap -> attrib
              val uris_attrib : aname -> uri list wrap -> attrib
              type elt = Xml.elt
              type ename = string
              val empty : unit -> elt
              val comment : string -> elt
              val pcdata : string wrap -> elt
              val encodedpcdata : string wrap -> elt
              val entity : string -> elt
              val leaf : ?a:attrib list -> ename -> elt
              val node : ?a:attrib list -> ename -> elt list_wrap -> elt
              val cdata : string -> elt
              val cdata_script : string -> elt
              val cdata_style : string -> elt
            end
          type 'a wrap = 'Xml.W.t
          type 'a list_wrap = 'Xml.W.tlist
          type ('a, 'b) nullary = ?a:'a attrib list -> unit -> 'b elt
          type ('a, 'b, 'c) unary =
              ?a:'a attrib list -> 'b elt wrap -> 'c elt
          type ('a, 'b, 'c) star =
              ?a:'a attrib list -> 'b elt list_wrap -> 'c elt
          module Info : Xml_sigs.Info
          type uri = Xml.uri
          val string_of_uri : (uri, string) Xml.W.ft
          val uri_of_string : (string, uri) Xml.W.ft
          val a_version : string wrap -> [> `Version ] attrib
          val a_baseProfile : string wrap -> [> `BaseProfile ] attrib
          val a_x : Svg_types.coord wrap -> [> `X ] attrib
          val a_y : Svg_types.coord wrap -> [> `Y ] attrib
          val a_width : Svg_types.Unit.length wrap -> [> `Width ] attrib
          val a_height : Svg_types.Unit.length wrap -> [> `Height ] attrib
          val a_preserveAspectRatio :
            string wrap -> [> `PreserveAspectRatio ] attrib
          val a_contentScriptType :
            string wrap -> [> `ContentScriptType ] attrib
          val a_contentStyleType :
            string wrap -> [> `ContentStyleType ] attrib
          val a_zoomAndPan :
            [< `Disable | `Magnify ] wrap -> [> `ZoomAndSpan ] attrib
          val a_href : Svg_types.iri wrap -> [> `Xlink_href ] attrib
          val a_xlink_href : Svg_types.iri wrap -> [> `Xlink_href ] attrib
          val a_requiredFeatures :
            Svg_types.spacestrings wrap -> [> `RequiredFeatures ] attrib
          val a_requiredExtensions :
            Svg_types.spacestrings wrap -> [> `RequiredExtension ] attrib
          val a_systemLanguage :
            Svg_types.commastrings wrap -> [> `SystemLanguage ] attrib
          val a_externalRessourcesRequired :
            bool wrap -> [> `ExternalRessourcesRequired ] attrib
          val a_id : string wrap -> [> `Id ] attrib
          val a_user_data : string -> string wrap -> [> `User_data ] attrib
          val a_xml_base : Svg_types.iri wrap -> [> `Xml_Base ] attrib
          val a_xml_lang : Svg_types.iri wrap -> [> `Xml_Lang ] attrib
          val a_xml_space :
            [< `Default | `Preserve ] wrap -> [> `Xml_Space ] attrib
          val a_type : string wrap -> [> `Type ] attrib
          val a_media : Svg_types.commastrings wrap -> [> `Media ] attrib
          val a_xlink_title : string wrap -> [> `Title ] attrib
          val a_class : Svg_types.spacestrings wrap -> [> `Class ] attrib
          val a_style : string wrap -> [> `Style ] attrib
          val a_transform :
            Svg_types.transforms wrap -> [> `Transform ] attrib
          val a_viewBox : Svg_types.fourfloats wrap -> [> `ViewBox ] attrib
          val a_d : string wrap -> [> `D ] attrib
          val a_pathLength : float wrap -> [> `PathLength ] attrib
          val a_rx : Svg_types.Unit.length wrap -> [> `Rx ] attrib
          val a_ry : Svg_types.Unit.length wrap -> [> `Ry ] attrib
          val a_cx : Svg_types.Unit.length wrap -> [> `Cx ] attrib
          val a_cy : Svg_types.Unit.length wrap -> [> `Cy ] attrib
          val a_r : Svg_types.Unit.length wrap -> [> `R ] attrib
          val a_x1 : Svg_types.coord wrap -> [> `X1 ] attrib
          val a_y1 : Svg_types.coord wrap -> [> `Y1 ] attrib
          val a_x2 : Svg_types.coord wrap -> [> `X2 ] attrib
          val a_y2 : Svg_types.coord wrap -> [> `Y2 ] attrib
          val a_points : Svg_types.coords wrap -> [> `Points ] attrib
          val a_x_list : Svg_types.lengths wrap -> [> `X_list ] attrib
          val a_y_list : Svg_types.lengths wrap -> [> `Y_list ] attrib
          val a_dx : Svg_types.number wrap -> [> `Dx ] attrib
          val a_dy : Svg_types.number wrap -> [> `Dy ] attrib
          val a_dx_list : Svg_types.lengths wrap -> [> `Dx_list ] attrib
          val a_dy_list : Svg_types.lengths wrap -> [> `Dy_list ] attrib
          val a_lengthAdjust :
            [< `Spacing | `SpacingAndGlyphs ] wrap ->
            [> `LengthAdjust ] attrib
          val a_textLength :
            Svg_types.Unit.length wrap -> [> `TextLength ] attrib
          val a_text_anchor :
            [< `End | `Inherit | `Middle | `Start ] wrap ->
            [> `Text_Anchor ] attrib
          val a_text_decoration :
            [< `Blink
             | `Inherit
             | `Line_through
             | `None
             | `Overline
             | `Underline ]
            wrap -> [> `Text_Decoration ] attrib
          val a_text_rendering :
            [< `Auto
             | `GeometricPrecision
             | `Inherit
             | `OptimizeLegibility
             | `OptimizeSpeed ]
            wrap -> [> `Text_Rendering ] attrib
          val a_rotate : Svg_types.numbers wrap -> [> `Rotate ] attrib
          val a_startOffset :
            Svg_types.Unit.length wrap -> [> `StartOffset ] attrib
          val a_method : [< `Align | `Stretch ] wrap -> [> `Method ] attrib
          val a_spacing : [< `Auto | `Exact ] wrap -> [> `Spacing ] attrib
          val a_glyphRef : string wrap -> [> `GlyphRef ] attrib
          val a_format : string wrap -> [> `Format ] attrib
          val a_markerUnits :
            [< `StrokeWidth | `UserSpaceOnUse ] wrap ->
            [> `MarkerUnits ] attrib
          val a_refX : Svg_types.coord wrap -> [> `RefX ] attrib
          val a_refY : Svg_types.coord wrap -> [> `RefY ] attrib
          val a_markerWidth :
            Svg_types.Unit.length wrap -> [> `MarkerWidth ] attrib
          val a_markerHeight :
            Svg_types.Unit.length wrap -> [> `MarkerHeight ] attrib
          val a_orient :
            Svg_types.Unit.angle option wrap -> [> `Orient ] attrib
          val a_local : string wrap -> [> `Local ] attrib
          val a_rendering_intent :
            [< `Absolute_colorimetric
             | `Auto
             | `Perceptual
             | `Relative_colorimetric
             | `Saturation ]
            wrap -> [> `Rendering_Indent ] attrib
          val a_gradientUnits :
            [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
            [ `GradientUnits ] attrib
          val a_gradientTransform :
            Svg_types.transforms wrap -> [> `Gradient_Transform ] attrib
          val a_spreadMethod :
            [< `Pad | `Reflect | `Repeat ] wrap -> [> `SpreadMethod ] attrib
          val a_fx : Svg_types.coord wrap -> [> `Fx ] attrib
          val a_fy : Svg_types.coord wrap -> [> `Fy ] attrib
          val a_offset :
            [< `Number of Svg_types.number
             | `Percentage of Svg_types.percentage ]
            wrap -> [> `Offset ] attrib
          val a_patternUnits :
            [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
            [> `PatternUnits ] attrib
          val a_patternContentUnits :
            [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
            [> `PatternContentUnits ] attrib
          val a_patternTransform :
            Svg_types.transforms wrap -> [> `PatternTransform ] attrib
          val a_clipPathUnits :
            [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
            [> `ClipPathUnits ] attrib
          val a_maskUnits :
            [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
            [> `MaskUnits ] attrib
          val a_maskContentUnits :
            [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
            [> `MaskContentUnits ] attrib
          val a_primitiveUnits :
            [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
            [> `PrimitiveUnits ] attrib
          val a_filterRes :
            Svg_types.number_optional_number wrap ->
            [> `FilterResUnits ] attrib
          val a_result : string wrap -> [> `Result ] attrib
          val a_in :
            [< `BackgroundAlpha
             | `BackgroundImage
             | `FillPaint
             | `Ref of string
             | `SourceAlpha
             | `SourceGraphic
             | `StrokePaint ]
            wrap -> [> `In ] attrib
          val a_in2 :
            [< `BackgroundAlpha
             | `BackgroundImage
             | `FillPaint
             | `Ref of string
             | `SourceAlpha
             | `SourceGraphic
             | `StrokePaint ]
            wrap -> [> `In2 ] attrib
          val a_azimuth : float wrap -> [> `Azimuth ] attrib
          val a_elevation : float wrap -> [> `Elevation ] attrib
          val a_pointsAtX : float wrap -> [> `PointsAtX ] attrib
          val a_pointsAtY : float wrap -> [> `PointsAtY ] attrib
          val a_pointsAtZ : float wrap -> [> `PointsAtZ ] attrib
          val a_specularExponent :
            float wrap -> [> `SpecularExponent ] attrib
          val a_specularConstant :
            float wrap -> [> `SpecularConstant ] attrib
          val a_limitingConeAngle :
            float wrap -> [> `LimitingConeAngle ] attrib
          val a_mode :
            [< `Darken | `Lighten | `Multiply | `Normal | `Screen ] wrap ->
            [> `Mode ] attrib
          val a_feColorMatrix_type :
            [< `HueRotate | `LuminanceToAlpha | `Matrix | `Saturate ] wrap ->
            [> `Typefecolor ] attrib
          val a_values : Svg_types.numbers wrap -> [> `Values ] attrib
          val a_transfer_type :
            [< `Discrete | `Gamma | `Identity | `Linear | `Table ] wrap ->
            [> `Type_transfert ] attrib
          val a_tableValues :
            Svg_types.numbers wrap -> [> `TableValues ] attrib
          val a_intercept : Svg_types.number wrap -> [> `Intercept ] attrib
          val a_amplitude : Svg_types.number wrap -> [> `Amplitude ] attrib
          val a_exponent : Svg_types.number wrap -> [> `Exponent ] attrib
          val a_transfer_offset :
            Svg_types.number wrap -> [> `Offset_transfer ] attrib
          val a_feComposite_operator :
            [< `Arithmetic | `Atop | `In | `Out | `Over | `Xor ] wrap ->
            [> `OperatorComposite ] attrib
          val a_k1 : Svg_types.number wrap -> [> `K1 ] attrib
          val a_k2 : Svg_types.number wrap -> [> `K2 ] attrib
          val a_k3 : Svg_types.number wrap -> [> `K3 ] attrib
          val a_k4 : Svg_types.number wrap -> [> `K4 ] attrib
          val a_order :
            Svg_types.number_optional_number wrap -> [> `Order ] attrib
          val a_kernelMatrix :
            Svg_types.numbers wrap -> [> `KernelMatrix ] attrib
          val a_divisor : Svg_types.number wrap -> [> `Divisor ] attrib
          val a_bias : Svg_types.number wrap -> [> `Bias ] attrib
          val a_kernelUnitLength :
            Svg_types.number_optional_number wrap ->
            [> `KernelUnitLength ] attrib
          val a_targetX : int wrap -> [> `TargetX ] attrib
          val a_targetY : int wrap -> [> `TargetY ] attrib
          val a_edgeMode :
            [< `Duplicate | `None | `Wrap ] wrap -> [> `TargetY ] attrib
          val a_preserveAlpha : bool wrap -> [> `TargetY ] attrib
          val a_surfaceScale :
            Svg_types.number wrap -> [> `SurfaceScale ] attrib
          val a_diffuseConstant :
            Svg_types.number wrap -> [> `DiffuseConstant ] attrib
          val a_scale : Svg_types.number wrap -> [> `Scale ] attrib
          val a_xChannelSelector :
            [< `A | `B | `G | `R ] wrap -> [> `XChannelSelector ] attrib
          val a_yChannelSelector :
            [< `A | `B | `G | `R ] wrap -> [> `YChannelSelector ] attrib
          val a_stdDeviation :
            Svg_types.number_optional_number wrap ->
            [> `StdDeviation ] attrib
          val a_feMorphology_operator :
            [< `Dilate | `Erode ] wrap -> [> `OperatorMorphology ] attrib
          val a_radius :
            Svg_types.number_optional_number wrap -> [> `Radius ] attrib
          val a_baseFrenquency :
            Svg_types.number_optional_number wrap ->
            [> `BaseFrequency ] attrib
          val a_numOctaves : int wrap -> [> `NumOctaves ] attrib
          val a_seed : Svg_types.number wrap -> [> `Seed ] attrib
          val a_stitchTiles :
            [< `NoStitch | `Stitch ] wrap -> [> `StitchTiles ] attrib
          val a_feTurbulence_type :
            [< `FractalNoise | `Turbulence ] wrap -> [> `TypeStitch ] attrib
          val a_xlink_show :
            [< `New | `Replace ] wrap -> [> `Xlink_show ] attrib
          val a_xlink_actuate :
            [< `None | `OnLoad | `OnRequest | `Other ] wrap ->
            [> `Xlink_actuate ] attrib
          val a_target : string wrap -> [> `Xlink_target ] attrib
          val a_viewTarget : string wrap -> [> `ViewTarget ] attrib
          val a_attributeName : string wrap -> [> `AttributeName ] attrib
          val a_attributeType :
            [< `Auto | `CSS | `XML ] wrap -> [> `AttributeType ] attrib
          val a_begin : string wrap -> [> `Begin ] attrib
          val a_dur : string wrap -> [> `Dur ] attrib
          val a_min : string wrap -> [> `Min ] attrib
          val a_max : string wrap -> [> `Max ] attrib
          val a_restart :
            [< `Always | `Never | `WhenNotActive ] wrap ->
            [> `Restart ] attrib
          val a_repeatCount : string wrap -> [> `RepeatCount ] attrib
          val a_repeatDur : string wrap -> [> `RepeatDur ] attrib
          val a_fill : Svg_types.paint wrap -> [> `Fill ] attrib
          val a_animation_fill :
            [< `Freeze | `Remove ] wrap -> [> `Fill_Animation ] attrib
          val a_calcMode :
            [< `Discrete | `Linear | `Paced | `Spline ] wrap ->
            [> `CalcMode ] attrib
          val a_animation_values :
            Svg_types.strings wrap -> [> `Valuesanim ] attrib
          val a_keyTimes : Svg_types.strings wrap -> [> `KeyTimes ] attrib
          val a_keySplines :
            Svg_types.strings wrap -> [> `KeySplines ] attrib
          val a_from : string wrap -> [> `From ] attrib
          val a_to : string wrap -> [> `To ] attrib
          val a_by : string wrap -> [> `By ] attrib
          val a_additive : [< `Replace | `Sum ] wrap -> [> `Additive ] attrib
          val a_accumulate :
            [< `None | `Sum ] wrap -> [> `Accumulate ] attrib
          val a_keyPoints :
            Svg_types.numbers_semicolon wrap -> [> `KeyPoints ] attrib
          val a_path : string wrap -> [> `Path ] attrib
          val a_animateTransform_type :
            [ `Rotate | `Scale | `SkewX | `SkewY | `Translate ] wrap ->
            [ `Typeanimatetransform ] attrib
          val a_horiz_origin_x :
            Svg_types.number wrap -> [> `HorizOriginX ] attrib
          val a_horiz_origin_y :
            Svg_types.number wrap -> [> `HorizOriginY ] attrib
          val a_horiz_adv_x : Svg_types.number wrap -> [> `HorizAdvX ] attrib
          val a_vert_origin_x :
            Svg_types.number wrap -> [> `VertOriginX ] attrib
          val a_vert_origin_y :
            Svg_types.number wrap -> [> `VertOriginY ] attrib
          val a_vert_adv_y : Svg_types.number wrap -> [> `VertAdvY ] attrib
          val a_unicode : string wrap -> [> `Unicode ] attrib
          val a_glyph_name : string wrap -> [> `glyphname ] attrib
          val a_orientation : [< `H | `V ] wrap -> [> `Orientation ] attrib
          val a_arabic_form :
            [< `Initial | `Isolated | `Medial | `Terminal ] wrap ->
            [> `Arabicform ] attrib
          val a_lang : string wrap -> [> `Lang ] attrib
          val a_u1 : string wrap -> [> `U1 ] attrib
          val a_u2 : string wrap -> [> `U2 ] attrib
          val a_g1 : string wrap -> [> `G1 ] attrib
          val a_g2 : string wrap -> [> `G2 ] attrib
          val a_k : string wrap -> [> `K ] attrib
          val a_font_family : string wrap -> [> `Font_Family ] attrib
          val a_font_style : string wrap -> [> `Font_Style ] attrib
          val a_font_variant : string wrap -> [> `Font_Variant ] attrib
          val a_font_weight : string wrap -> [> `Font_Weight ] attrib
          val a_font_stretch : string wrap -> [> `Font_Stretch ] attrib
          val a_font_size : string wrap -> [> `Font_Size ] attrib
          val a_unicode_range : string wrap -> [> `UnicodeRange ] attrib
          val a_units_per_em : string wrap -> [> `UnitsPerEm ] attrib
          val a_stemv : Svg_types.number wrap -> [> `Stemv ] attrib
          val a_stemh : Svg_types.number wrap -> [> `Stemh ] attrib
          val a_slope : Svg_types.number wrap -> [> `Slope ] attrib
          val a_cap_height : Svg_types.number wrap -> [> `CapHeight ] attrib
          val a_x_height : Svg_types.number wrap -> [> `XHeight ] attrib
          val a_accent_height :
            Svg_types.number wrap -> [> `AccentHeight ] attrib
          val a_ascent : Svg_types.number wrap -> [> `Ascent ] attrib
          val a_widths : string wrap -> [> `Widths ] attrib
          val a_bbox : string wrap -> [> `Bbox ] attrib
          val a_ideographic :
            Svg_types.number wrap -> [> `Ideographic ] attrib
          val a_alphabetic : Svg_types.number wrap -> [> `Alphabetic ] attrib
          val a_mathematical :
            Svg_types.number wrap -> [> `Mathematical ] attrib
          val a_hanging : Svg_types.number wrap -> [> `Hanging ] attrib
          val a_videographic :
            Svg_types.number wrap -> [> `VIdeographic ] attrib
          val a_v_alphabetic :
            Svg_types.number wrap -> [> `VAlphabetic ] attrib
          val a_v_mathematical :
            Svg_types.number wrap -> [> `VMathematical ] attrib
          val a_v_hanging : Svg_types.number wrap -> [> `VHanging ] attrib
          val a_underline_position :
            Svg_types.number wrap -> [> `UnderlinePosition ] attrib
          val a_underline_thickness :
            Svg_types.number wrap -> [> `UnderlineThickness ] attrib
          val a_strikethrough_position :
            Svg_types.number wrap -> [> `StrikethroughPosition ] attrib
          val a_strikethrough_thickness :
            Svg_types.number wrap -> [> `StrikethroughThickness ] attrib
          val a_overline_position :
            Svg_types.number wrap -> [> `OverlinePosition ] attrib
          val a_overline_thickness :
            Svg_types.number wrap -> [> `OverlineThickness ] attrib
          val a_string : string wrap -> [> `String ] attrib
          val a_name : string wrap -> [> `Name ] attrib
          val a_alignment_baseline :
            [< `After_edge
             | `Alphabetic
             | `Auto
             | `Baseline
             | `Before_edge
             | `Central
             | `Hanging
             | `Ideographic
             | `Inherit
             | `Mathematical
             | `Middle
             | `Text_after_edge
             | `Text_before_edge ]
            wrap -> [> `Alignment_Baseline ] attrib
          val a_dominant_baseline :
            [< `Alphabetic
             | `Auto
             | `Central
             | `Hanging
             | `Ideographic
             | `Inherit
             | `Mathematical
             | `Middle
             | `No_change
             | `Reset_size
             | `Text_after_edge
             | `Text_before_edge
             | `Use_script ]
            wrap -> [> `Dominant_Baseline ] attrib
          val a_stop_color : Svg_types.color wrap -> [> `Stop_Color ] attrib
          val a_stop_opacity :
            Svg_types.number wrap -> [> `Stop_Opacity ] attrib
          val a_stroke : Svg_types.paint wrap -> [> `Stroke ] attrib
          val a_stroke_width :
            Svg_types.Unit.length wrap -> [> `Stroke_Width ] attrib
          val a_stroke_linecap :
            [< `Butt | `Round | `Square ] wrap -> [> `Stroke_Linecap ] attrib
          val a_stroke_linejoin :
            [< `Bever | `Miter | `Round ] wrap ->
            [> `Stroke_Linejoin ] attrib
          val a_stroke_miterlimit :
            float wrap -> [> `Stroke_Miterlimit ] attrib
          val a_stroke_dasharray :
            Svg_types.Unit.length list wrap -> [> `Stroke_Dasharray ] attrib
          val a_stroke_dashoffset :
            Svg_types.Unit.length wrap -> [> `Stroke_Dashoffset ] attrib
          val a_stroke_opacity : float wrap -> [> `Stroke_Opacity ] attrib
          val a_onabort : Xml.event_handler -> [> `OnAbort ] attrib
          val a_onactivate : Xml.event_handler -> [> `OnActivate ] attrib
          val a_onbegin : Xml.event_handler -> [> `OnBegin ] attrib
          val a_onend : Xml.event_handler -> [> `OnEnd ] attrib
          val a_onerror : Xml.event_handler -> [> `OnError ] attrib
          val a_onfocusin : Xml.event_handler -> [> `OnFocusIn ] attrib
          val a_onfocusout : Xml.event_handler -> [> `OnFocusOut ] attrib
          val a_onload : Xml.event_handler -> [> `OnLoad ] attrib
          val a_onrepeat : Xml.event_handler -> [> `OnRepeat ] attrib
          val a_onresize : Xml.event_handler -> [> `OnResize ] attrib
          val a_onscroll : Xml.event_handler -> [> `OnScroll ] attrib
          val a_onunload : Xml.event_handler -> [> `OnUnload ] attrib
          val a_onzoom : Xml.event_handler -> [> `OnZoom ] attrib
          val a_onclick : Xml.mouse_event_handler -> [> `OnClick ] attrib
          val a_onmousedown :
            Xml.mouse_event_handler -> [> `OnMouseDown ] attrib
          val a_onmouseup : Xml.mouse_event_handler -> [> `OnMouseUp ] attrib
          val a_onmouseover :
            Xml.mouse_event_handler -> [> `OnMouseOver ] attrib
          val a_onmouseout :
            Xml.mouse_event_handler -> [> `OnMouseOut ] attrib
          val a_onmousemove :
            Xml.mouse_event_handler -> [> `OnMouseMove ] attrib
          val a_ontouchstart :
            Xml.touch_event_handler -> [> `OnTouchStart ] attrib
          val a_ontouchend :
            Xml.touch_event_handler -> [> `OnTouchEnd ] attrib
          val a_ontouchmove :
            Xml.touch_event_handler -> [> `OnTouchMove ] attrib
          val a_ontouchcancel :
            Xml.touch_event_handler -> [> `OnTouchCancel ] attrib
          val txt : string wrap -> [> Svg_types.txt ] elt
          val svg :
            ([< Svg_types.svg_attr ], [< Svg_types.svg_content ],
             [> Svg_types.svg ])
            star
          val g :
            ([< Svg_types.g_attr ], [< Svg_types.g_content ],
             [> Svg_types.g ])
            star
          val defs :
            ([< Svg_types.defs_attr ], [< Svg_types.defs_content ],
             [> Svg_types.defs ])
            star
          val desc :
            ([< Svg_types.desc_attr ], [< Svg_types.desc_content ],
             [> Svg_types.desc ])
            unary
          val title :
            ([< Svg_types.title_attr ], [< Svg_types.title_content ],
             [> Svg_types.title ])
            unary
          val symbol :
            ([< Svg_types.symbol_attr ], [< Svg_types.symbol_content ],
             [> Svg_types.symbol ])
            star
          val use :
            ([< Svg_types.use_attr ], [< Svg_types.use_content ],
             [> Svg_types.use ])
            star
          val image :
            ([< Svg_types.image_attr ], [< Svg_types.image_content ],
             [> Svg_types.image ])
            star
          val switch :
            ([< Svg_types.switch_attr ], [< Svg_types.switch_content ],
             [> Svg_types.switch ])
            star
          val style :
            ([< Svg_types.style_attr ], [< Svg_types.style_content ],
             [> Svg_types.style ])
            unary
          val path :
            ([< Svg_types.path_attr ], [< Svg_types.path_content ],
             [> Svg_types.path ])
            star
          val rect :
            ([< Svg_types.rect_attr ], [< Svg_types.rect_content ],
             [> Svg_types.rect ])
            star
          val circle :
            ([< Svg_types.circle_attr ], [< Svg_types.circle_content ],
             [> Svg_types.circle ])
            star
          val ellipse :
            ([< Svg_types.ellipse_attr ], [< Svg_types.ellipse_content ],
             [> Svg_types.ellipse ])
            star
          val line :
            ([< Svg_types.line_attr ], [< Svg_types.line_content ],
             [> Svg_types.line ])
            star
          val polyline :
            ([< Svg_types.polyline_attr ], [< Svg_types.polyline_content ],
             [> Svg_types.polyline ])
            star
          val polygon :
            ([< Svg_types.polygon_attr ], [< Svg_types.polygon_content ],
             [> Svg_types.polygon ])
            star
          val text :
            ([< Svg_types.text_attr ], [< Svg_types.text_content ],
             [> Svg_types.text ])
            star
          val tspan :
            ([< Svg_types.tspan_attr ], [< Svg_types.tspan_content ],
             [> Svg_types.tspan ])
            star
          val tref :
            ([< Svg_types.tref_attr ], [< Svg_types.tref_content ],
             [> Svg_types.tref ])
            star
          val textPath :
            ([< Svg_types.textpath_attr ], [< Svg_types.textpath_content ],
             [> Svg_types.textpath ])
            star
          val altGlyph :
            ([< Svg_types.altglyph_attr ], [< Svg_types.altglyph_content ],
             [> Svg_types.altglyph ])
            unary
          type altglyphdef_content =
              [ `Item of Svg_types.altglyphitem elt list
              | `Ref of Svg_types.glyphref elt list ]
          val altGlyphDef :
            ([< Svg_types.altglyphdef_attr ], [< altglyphdef_content ],
             [> Svg_types.altglyphdef ])
            unary
          val altGlyphItem :
            ([< Svg_types.altglyphitem_attr ],
             [< Svg_types.altglyphitem_content ],
             [> Svg_types.altglyphitem ])
            star
          val glyphRef :
            ([< Svg_types.glyphref_attr ], [> Svg_types.glyphref ]) nullary
          val marker :
            ([< Svg_types.marker_attr ], [< Svg_types.marker_content ],
             [> Svg_types.marker ])
            star
          val color_profile :
            ([< Svg_types.colorprofile_attr ],
             [< Svg_types.colorprofile_content ],
             [> Svg_types.colorprofile ])
            star
          val linearGradient :
            ([< Svg_types.lineargradient_attr ],
             [< Svg_types.lineargradient_content ],
             [> Svg_types.lineargradient ])
            star
          val radialGradient :
            ([< Svg_types.radialgradient_attr ],
             [< Svg_types.radialgradient_content ],
             [> Svg_types.radialgradient ])
            star
          val stop :
            ([< Svg_types.stop_attr ], [< Svg_types.stop_content ],
             [> Svg_types.stop ])
            star
          val pattern :
            ([< Svg_types.pattern_attr ], [< Svg_types.pattern_content ],
             [> Svg_types.pattern ])
            star
          val clipPath :
            ([< Svg_types.clippath_attr ], [< Svg_types.clippath_content ],
             [> Svg_types.clippath ])
            star
          val filter :
            ([< Svg_types.filter_attr ], [< Svg_types.filter_content ],
             [> Svg_types.filter ])
            star
          val feDistantLight :
            ([< Svg_types.fedistantlight_attr ],
             [< Svg_types.fedistantlight_content ],
             [> Svg_types.fedistantlight ])
            star
          val fePointLight :
            ([< Svg_types.fepointlight_attr ],
             [< Svg_types.fepointlight_content ],
             [> Svg_types.fepointlight ])
            star
          val feSpotLight :
            ([< Svg_types.fespotlight_attr ],
             [< Svg_types.fespotlight_content ], [> Svg_types.fespotlight ])
            star
          val feBlend :
            ([< Svg_types.feblend_attr ], [< Svg_types.feblend_content ],
             [> Svg_types.feblend ])
            star
          val feColorMatrix :
            ([< Svg_types.fecolormatrix_attr ],
             [< Svg_types.fecolormatrix_content ],
             [> Svg_types.fecolormatrix ])
            star
          val feComponentTransfer :
            ([< Svg_types.fecomponenttransfer_attr ],
             [< Svg_types.fecomponenttransfer_content ],
             [> Svg_types.fecomponenttransfer ])
            star
          val feFuncA :
            ([< Svg_types.fefunca_attr ], [< Svg_types.fefunca_content ],
             [> Svg_types.fefunca ])
            star
          val feFuncG :
            ([< Svg_types.fefuncg_attr ], [< Svg_types.fefuncg_content ],
             [> Svg_types.fefuncg ])
            star
          val feFuncB :
            ([< Svg_types.fefuncb_attr ], [< Svg_types.fefuncb_content ],
             [> Svg_types.fefuncb ])
            star
          val feFuncR :
            ([< Svg_types.fefuncr_attr ], [< Svg_types.fefuncr_content ],
             [> Svg_types.fefuncr ])
            star
          val feComposite :
            ([< Svg_types.fecomposite_attr ],
             [< Svg_types.fecomposite_content ], [> Svg_types.fecomposite ])
            star
          val feConvolveMatrix :
            ([< Svg_types.feconvolvematrix_attr ],
             [< Svg_types.feconvolvematrix_content ],
             [> Svg_types.feconvolvematrix ])
            star
          val feDiffuseLighting :
            ([< Svg_types.fediffuselighting_attr ],
             [< Svg_types.fediffuselighting_content ],
             [> Svg_types.fediffuselighting ])
            star
          val feDisplacementMap :
            ([< Svg_types.fedisplacementmap_attr ],
             [< Svg_types.fedisplacementmap_content ],
             [> Svg_types.fedisplacementmap ])
            star
          val feFlood :
            ([< Svg_types.feflood_attr ], [< Svg_types.feflood_content ],
             [> Svg_types.feflood ])
            star
          val feGaussianBlur :
            ([< Svg_types.fegaussianblur_attr ],
             [< Svg_types.fegaussianblur_content ],
             [> Svg_types.fegaussianblur ])
            star
          val feImage :
            ([< Svg_types.feimage_attr ], [< Svg_types.feimage_content ],
             [> Svg_types.feimage ])
            star
          val feMerge :
            ([< Svg_types.femerge_attr ], [< Svg_types.femerge_content ],
             [> Svg_types.femerge ])
            star
          val feMorphology :
            ([< Svg_types.femorphology_attr ],
             [< Svg_types.femorphology_content ],
             [> Svg_types.femorphology ])
            star
          val feOffset :
            ([< Svg_types.feoffset_attr ], [< Svg_types.feoffset_content ],
             [> Svg_types.feoffset ])
            star
          val feSpecularLighting :
            ([< Svg_types.fespecularlighting_attr ],
             [< Svg_types.fespecularlighting_content ],
             [> Svg_types.fespecularlighting ])
            star
          val feTile :
            ([< Svg_types.fetile_attr ], [< Svg_types.fetile_content ],
             [> Svg_types.fetile ])
            star
          val feTurbulence :
            ([< Svg_types.feturbulence_attr ],
             [< Svg_types.feturbulence_content ],
             [> Svg_types.feturbulence ])
            star
          val cursor :
            ([< Svg_types.cursor_attr ], [< Svg_types.cursor_content ],
             [> Svg_types.cursor ])
            star
          val a :
            ([< Svg_types.a_attr ], [< Svg_types.a_content ],
             [> Svg_types.a ])
            star
          val view :
            ([< Svg_types.view_attr ], [< Svg_types.view_content ],
             [> Svg_types.view ])
            star
          val script :
            ([< Svg_types.script_attr ], [< Svg_types.script_content ],
             [> Svg_types.script ])
            unary
          val animation :
            ([< Svg_types.animation_attr ], [< Svg_types.animation_content ],
             [> Svg_types.animation ])
            star
          val set :
            ([< Svg_types.set_attr ], [< Svg_types.set_content ],
             [> Svg_types.set ])
            star
          val animateMotion :
            ([< Svg_types.animatemotion_attr ],
             [< Svg_types.animatemotion_content ],
             [> Svg_types.animatemotion ])
            star
          val mpath :
            ([< Svg_types.mpath_attr ], [< Svg_types.mpath_content ],
             [> Svg_types.mpath ])
            star
          val animateColor :
            ([< Svg_types.animatecolor_attr ],
             [< Svg_types.animatecolor_content ],
             [> Svg_types.animatecolor ])
            star
          val animateTransform :
            ([< Svg_types.animatetransform_attr ],
             [< Svg_types.animatetransform_content ],
             [> Svg_types.animatetransform ])
            star
          val font :
            ([< Svg_types.font_attr ], [< Svg_types.font_content ],
             [> Svg_types.font ])
            star
          val glyph :
            ([< Svg_types.glyph_attr ], [< Svg_types.glyph_content ],
             [> Svg_types.glyph ])
            star
          val missing_glyph :
            ([< Svg_types.missingglyph_attr ],
             [< Svg_types.missingglyph_content ],
             [> Svg_types.missingglyph ])
            star
          val hkern :
            ([< Svg_types.hkern_attr ], [> Svg_types.hkern ]) nullary
          val vkern :
            ([< Svg_types.vkern_attr ], [> Svg_types.vkern ]) nullary
          val font_face :
            ([< Svg_types.font_face_attr ], [> Svg_types.font_face ]) nullary
          val font_face_src :
            ([< Svg_types.font_face_src_attr ],
             [< Svg_types.font_face_src_content ],
             [> Svg_types.font_face_src ])
            star
          val font_face_uri :
            ([< Svg_types.font_face_uri_attr ],
             [< Svg_types.font_face_uri_content ],
             [> Svg_types.font_face_uri ])
            star
          val font_face_format :
            ([< Svg_types.font_face_format_attr ],
             [> Svg_types.font_face_format ])
            nullary
          val font_face_name :
            ([< Svg_types.font_face_name_attr ],
             [> Svg_types.font_face_name ])
            nullary
          val metadata :
            ?a:Svg_types.metadata_attr attrib list ->
            Xml.elt list_wrap -> [> Svg_types.metadata ] elt
          val foreignObject :
            ?a:Svg_types.foreignobject_attr attrib list ->
            Xml.elt list_wrap -> [> Svg_types.foreignobject ] elt
          val pcdata : string wrap -> [> Svg_types.txt ] elt
          val of_seq : Xml_stream.signal Seq.t -> 'a elt list_wrap
          val tot : Xml.elt -> 'a elt
          val totl : Xml.elt list_wrap -> 'a elt list_wrap
          val toelt : 'a elt -> Xml.elt
          val toeltl : 'a elt list_wrap -> Xml.elt list_wrap
          val doc_toelt : doc -> Xml.elt
          val to_xmlattribs : 'a attrib list -> Xml.attrib list
          val to_attrib : Xml.attrib -> 'a attrib
          module Unsafe :
            sig
              val data : string wrap -> 'a elt
              val node :
                string -> ?a:'a attrib list -> 'b elt list_wrap -> 'c elt
              val leaf : string -> ?a:'a attrib list -> unit -> 'b elt
              val coerce_elt : 'a elt -> 'b elt
              val string_attrib : string -> string wrap -> 'a attrib
              val float_attrib : string -> float wrap -> 'a attrib
              val int_attrib : string -> int wrap -> 'a attrib
              val uri_attrib : string -> uri wrap -> 'a attrib
              val space_sep_attrib : string -> string list wrap -> 'a attrib
              val comma_sep_attrib : string -> string list wrap -> 'a attrib
            end
        end
      module D :
        sig
          module Raw :
            sig
              type 'a elt = 'a elt
              type doc = [ `Svg ] elt
              type 'a attrib = 'a attrib
              module Xml :
                sig
                  module W :
                    sig
                      type 'a t = 'Xml.W.t
                      val return : '-> 'a t
                      type ('a, 'b) ft = ('a, 'b) Xml.W.ft
                      val fmap : ('a, 'b) ft -> 'a t -> 'b t
                      type 'a tlist = 'Xml.W.tlist
                      val nil : unit -> 'a tlist
                      val singleton : 'a t -> 'a tlist
                      val cons : 'a t -> 'a tlist -> 'a tlist
                      val append : 'a tlist -> 'a tlist -> 'a tlist
                      val map : ('a, 'b) ft -> 'a tlist -> 'b tlist
                    end
                  type 'a wrap = 'W.t
                  type 'a list_wrap = 'W.tlist
                  type uri = Xml.uri
                  val string_of_uri : (uri, string) W.ft
                  val uri_of_string : (string, uri) W.ft
                  type aname = string
                  type event_handler = Xml.event_handler
                  type mouse_event_handler = Xml.mouse_event_handler
                  type keyboard_event_handler = Xml.keyboard_event_handler
                  type touch_event_handler = Xml.touch_event_handler
                  type attrib = Xml.attrib
                  val float_attrib : aname -> float wrap -> attrib
                  val int_attrib : aname -> int wrap -> attrib
                  val string_attrib : aname -> string wrap -> attrib
                  val space_sep_attrib : aname -> string list wrap -> attrib
                  val comma_sep_attrib : aname -> string list wrap -> attrib
                  val event_handler_attrib : aname -> event_handler -> attrib
                  val mouse_event_handler_attrib :
                    aname -> mouse_event_handler -> attrib
                  val keyboard_event_handler_attrib :
                    aname -> keyboard_event_handler -> attrib
                  val touch_event_handler_attrib :
                    aname -> touch_event_handler -> attrib
                  val uri_attrib : aname -> uri wrap -> attrib
                  val uris_attrib : aname -> uri list wrap -> attrib
                  type elt = Xml.elt
                  type ename = string
                  val empty : unit -> elt
                  val comment : string -> elt
                  val pcdata : string wrap -> elt
                  val encodedpcdata : string wrap -> elt
                  val entity : string -> elt
                  val leaf : ?a:attrib list -> ename -> elt
                  val node : ?a:attrib list -> ename -> elt list_wrap -> elt
                  val cdata : string -> elt
                  val cdata_script : string -> elt
                  val cdata_style : string -> elt
                end
              type 'a wrap = 'Xml.W.t
              type 'a list_wrap = 'Xml.W.tlist
              type ('a, 'b) nullary = ?a:'a attrib list -> unit -> 'b elt
              type ('a, 'b, 'c) unary =
                  ?a:'a attrib list -> 'b elt wrap -> 'c elt
              type ('a, 'b, 'c) star =
                  ?a:'a attrib list -> 'b elt list_wrap -> 'c elt
              module Info : Xml_sigs.Info
              type uri = Xml.uri
              val string_of_uri : (uri, string) Xml.W.ft
              val uri_of_string : (string, uri) Xml.W.ft
              val a_version : string wrap -> [> `Version ] attrib
              val a_baseProfile : string wrap -> [> `BaseProfile ] attrib
              val a_x : Svg_types.coord wrap -> [> `X ] attrib
              val a_y : Svg_types.coord wrap -> [> `Y ] attrib
              val a_width : Svg_types.Unit.length wrap -> [> `Width ] attrib
              val a_height :
                Svg_types.Unit.length wrap -> [> `Height ] attrib
              val a_preserveAspectRatio :
                string wrap -> [> `PreserveAspectRatio ] attrib
              val a_contentScriptType :
                string wrap -> [> `ContentScriptType ] attrib
              val a_contentStyleType :
                string wrap -> [> `ContentStyleType ] attrib
              val a_zoomAndPan :
                [< `Disable | `Magnify ] wrap -> [> `ZoomAndSpan ] attrib
              val a_href : Svg_types.iri wrap -> [> `Xlink_href ] attrib
              val a_xlink_href :
                Svg_types.iri wrap -> [> `Xlink_href ] attrib
              val a_requiredFeatures :
                Svg_types.spacestrings wrap -> [> `RequiredFeatures ] attrib
              val a_requiredExtensions :
                Svg_types.spacestrings wrap -> [> `RequiredExtension ] attrib
              val a_systemLanguage :
                Svg_types.commastrings wrap -> [> `SystemLanguage ] attrib
              val a_externalRessourcesRequired :
                bool wrap -> [> `ExternalRessourcesRequired ] attrib
              val a_id : string wrap -> [> `Id ] attrib
              val a_user_data :
                string -> string wrap -> [> `User_data ] attrib
              val a_xml_base : Svg_types.iri wrap -> [> `Xml_Base ] attrib
              val a_xml_lang : Svg_types.iri wrap -> [> `Xml_Lang ] attrib
              val a_xml_space :
                [< `Default | `Preserve ] wrap -> [> `Xml_Space ] attrib
              val a_type : string wrap -> [> `Type ] attrib
              val a_media : Svg_types.commastrings wrap -> [> `Media ] attrib
              val a_xlink_title : string wrap -> [> `Title ] attrib
              val a_class : Svg_types.spacestrings wrap -> [> `Class ] attrib
              val a_style : string wrap -> [> `Style ] attrib
              val a_transform :
                Svg_types.transforms wrap -> [> `Transform ] attrib
              val a_viewBox :
                Svg_types.fourfloats wrap -> [> `ViewBox ] attrib
              val a_d : string wrap -> [> `D ] attrib
              val a_pathLength : float wrap -> [> `PathLength ] attrib
              val a_rx : Svg_types.Unit.length wrap -> [> `Rx ] attrib
              val a_ry : Svg_types.Unit.length wrap -> [> `Ry ] attrib
              val a_cx : Svg_types.Unit.length wrap -> [> `Cx ] attrib
              val a_cy : Svg_types.Unit.length wrap -> [> `Cy ] attrib
              val a_r : Svg_types.Unit.length wrap -> [> `R ] attrib
              val a_x1 : Svg_types.coord wrap -> [> `X1 ] attrib
              val a_y1 : Svg_types.coord wrap -> [> `Y1 ] attrib
              val a_x2 : Svg_types.coord wrap -> [> `X2 ] attrib
              val a_y2 : Svg_types.coord wrap -> [> `Y2 ] attrib
              val a_points : Svg_types.coords wrap -> [> `Points ] attrib
              val a_x_list : Svg_types.lengths wrap -> [> `X_list ] attrib
              val a_y_list : Svg_types.lengths wrap -> [> `Y_list ] attrib
              val a_dx : Svg_types.number wrap -> [> `Dx ] attrib
              val a_dy : Svg_types.number wrap -> [> `Dy ] attrib
              val a_dx_list : Svg_types.lengths wrap -> [> `Dx_list ] attrib
              val a_dy_list : Svg_types.lengths wrap -> [> `Dy_list ] attrib
              val a_lengthAdjust :
                [< `Spacing | `SpacingAndGlyphs ] wrap ->
                [> `LengthAdjust ] attrib
              val a_textLength :
                Svg_types.Unit.length wrap -> [> `TextLength ] attrib
              val a_text_anchor :
                [< `End | `Inherit | `Middle | `Start ] wrap ->
                [> `Text_Anchor ] attrib
              val a_text_decoration :
                [< `Blink
                 | `Inherit
                 | `Line_through
                 | `None
                 | `Overline
                 | `Underline ]
                wrap -> [> `Text_Decoration ] attrib
              val a_text_rendering :
                [< `Auto
                 | `GeometricPrecision
                 | `Inherit
                 | `OptimizeLegibility
                 | `OptimizeSpeed ]
                wrap -> [> `Text_Rendering ] attrib
              val a_rotate : Svg_types.numbers wrap -> [> `Rotate ] attrib
              val a_startOffset :
                Svg_types.Unit.length wrap -> [> `StartOffset ] attrib
              val a_method :
                [< `Align | `Stretch ] wrap -> [> `Method ] attrib
              val a_spacing :
                [< `Auto | `Exact ] wrap -> [> `Spacing ] attrib
              val a_glyphRef : string wrap -> [> `GlyphRef ] attrib
              val a_format : string wrap -> [> `Format ] attrib
              val a_markerUnits :
                [< `StrokeWidth | `UserSpaceOnUse ] wrap ->
                [> `MarkerUnits ] attrib
              val a_refX : Svg_types.coord wrap -> [> `RefX ] attrib
              val a_refY : Svg_types.coord wrap -> [> `RefY ] attrib
              val a_markerWidth :
                Svg_types.Unit.length wrap -> [> `MarkerWidth ] attrib
              val a_markerHeight :
                Svg_types.Unit.length wrap -> [> `MarkerHeight ] attrib
              val a_orient :
                Svg_types.Unit.angle option wrap -> [> `Orient ] attrib
              val a_local : string wrap -> [> `Local ] attrib
              val a_rendering_intent :
                [< `Absolute_colorimetric
                 | `Auto
                 | `Perceptual
                 | `Relative_colorimetric
                 | `Saturation ]
                wrap -> [> `Rendering_Indent ] attrib
              val a_gradientUnits :
                [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
                [ `GradientUnits ] attrib
              val a_gradientTransform :
                Svg_types.transforms wrap -> [> `Gradient_Transform ] attrib
              val a_spreadMethod :
                [< `Pad | `Reflect | `Repeat ] wrap ->
                [> `SpreadMethod ] attrib
              val a_fx : Svg_types.coord wrap -> [> `Fx ] attrib
              val a_fy : Svg_types.coord wrap -> [> `Fy ] attrib
              val a_offset :
                [< `Number of Svg_types.number
                 | `Percentage of Svg_types.percentage ]
                wrap -> [> `Offset ] attrib
              val a_patternUnits :
                [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
                [> `PatternUnits ] attrib
              val a_patternContentUnits :
                [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
                [> `PatternContentUnits ] attrib
              val a_patternTransform :
                Svg_types.transforms wrap -> [> `PatternTransform ] attrib
              val a_clipPathUnits :
                [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
                [> `ClipPathUnits ] attrib
              val a_maskUnits :
                [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
                [> `MaskUnits ] attrib
              val a_maskContentUnits :
                [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
                [> `MaskContentUnits ] attrib
              val a_primitiveUnits :
                [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
                [> `PrimitiveUnits ] attrib
              val a_filterRes :
                Svg_types.number_optional_number wrap ->
                [> `FilterResUnits ] attrib
              val a_result : string wrap -> [> `Result ] attrib
              val a_in :
                [< `BackgroundAlpha
                 | `BackgroundImage
                 | `FillPaint
                 | `Ref of string
                 | `SourceAlpha
                 | `SourceGraphic
                 | `StrokePaint ]
                wrap -> [> `In ] attrib
              val a_in2 :
                [< `BackgroundAlpha
                 | `BackgroundImage
                 | `FillPaint
                 | `Ref of string
                 | `SourceAlpha
                 | `SourceGraphic
                 | `StrokePaint ]
                wrap -> [> `In2 ] attrib
              val a_azimuth : float wrap -> [> `Azimuth ] attrib
              val a_elevation : float wrap -> [> `Elevation ] attrib
              val a_pointsAtX : float wrap -> [> `PointsAtX ] attrib
              val a_pointsAtY : float wrap -> [> `PointsAtY ] attrib
              val a_pointsAtZ : float wrap -> [> `PointsAtZ ] attrib
              val a_specularExponent :
                float wrap -> [> `SpecularExponent ] attrib
              val a_specularConstant :
                float wrap -> [> `SpecularConstant ] attrib
              val a_limitingConeAngle :
                float wrap -> [> `LimitingConeAngle ] attrib
              val a_mode :
                [< `Darken | `Lighten | `Multiply | `Normal | `Screen ] wrap ->
                [> `Mode ] attrib
              val a_feColorMatrix_type :
                [< `HueRotate | `LuminanceToAlpha | `Matrix | `Saturate ]
                wrap -> [> `Typefecolor ] attrib
              val a_values : Svg_types.numbers wrap -> [> `Values ] attrib
              val a_transfer_type :
                [< `Discrete | `Gamma | `Identity | `Linear | `Table ] wrap ->
                [> `Type_transfert ] attrib
              val a_tableValues :
                Svg_types.numbers wrap -> [> `TableValues ] attrib
              val a_intercept :
                Svg_types.number wrap -> [> `Intercept ] attrib
              val a_amplitude :
                Svg_types.number wrap -> [> `Amplitude ] attrib
              val a_exponent : Svg_types.number wrap -> [> `Exponent ] attrib
              val a_transfer_offset :
                Svg_types.number wrap -> [> `Offset_transfer ] attrib
              val a_feComposite_operator :
                [< `Arithmetic | `Atop | `In | `Out | `Over | `Xor ] wrap ->
                [> `OperatorComposite ] attrib
              val a_k1 : Svg_types.number wrap -> [> `K1 ] attrib
              val a_k2 : Svg_types.number wrap -> [> `K2 ] attrib
              val a_k3 : Svg_types.number wrap -> [> `K3 ] attrib
              val a_k4 : Svg_types.number wrap -> [> `K4 ] attrib
              val a_order :
                Svg_types.number_optional_number wrap -> [> `Order ] attrib
              val a_kernelMatrix :
                Svg_types.numbers wrap -> [> `KernelMatrix ] attrib
              val a_divisor : Svg_types.number wrap -> [> `Divisor ] attrib
              val a_bias : Svg_types.number wrap -> [> `Bias ] attrib
              val a_kernelUnitLength :
                Svg_types.number_optional_number wrap ->
                [> `KernelUnitLength ] attrib
              val a_targetX : int wrap -> [> `TargetX ] attrib
              val a_targetY : int wrap -> [> `TargetY ] attrib
              val a_edgeMode :
                [< `Duplicate | `None | `Wrap ] wrap -> [> `TargetY ] attrib
              val a_preserveAlpha : bool wrap -> [> `TargetY ] attrib
              val a_surfaceScale :
                Svg_types.number wrap -> [> `SurfaceScale ] attrib
              val a_diffuseConstant :
                Svg_types.number wrap -> [> `DiffuseConstant ] attrib
              val a_scale : Svg_types.number wrap -> [> `Scale ] attrib
              val a_xChannelSelector :
                [< `A | `B | `G | `R ] wrap -> [> `XChannelSelector ] attrib
              val a_yChannelSelector :
                [< `A | `B | `G | `R ] wrap -> [> `YChannelSelector ] attrib
              val a_stdDeviation :
                Svg_types.number_optional_number wrap ->
                [> `StdDeviation ] attrib
              val a_feMorphology_operator :
                [< `Dilate | `Erode ] wrap -> [> `OperatorMorphology ] attrib
              val a_radius :
                Svg_types.number_optional_number wrap -> [> `Radius ] attrib
              val a_baseFrenquency :
                Svg_types.number_optional_number wrap ->
                [> `BaseFrequency ] attrib
              val a_numOctaves : int wrap -> [> `NumOctaves ] attrib
              val a_seed : Svg_types.number wrap -> [> `Seed ] attrib
              val a_stitchTiles :
                [< `NoStitch | `Stitch ] wrap -> [> `StitchTiles ] attrib
              val a_feTurbulence_type :
                [< `FractalNoise | `Turbulence ] wrap ->
                [> `TypeStitch ] attrib
              val a_xlink_show :
                [< `New | `Replace ] wrap -> [> `Xlink_show ] attrib
              val a_xlink_actuate :
                [< `None | `OnLoad | `OnRequest | `Other ] wrap ->
                [> `Xlink_actuate ] attrib
              val a_target : string wrap -> [> `Xlink_target ] attrib
              val a_viewTarget : string wrap -> [> `ViewTarget ] attrib
              val a_attributeName : string wrap -> [> `AttributeName ] attrib
              val a_attributeType :
                [< `Auto | `CSS | `XML ] wrap -> [> `AttributeType ] attrib
              val a_begin : string wrap -> [> `Begin ] attrib
              val a_dur : string wrap -> [> `Dur ] attrib
              val a_min : string wrap -> [> `Min ] attrib
              val a_max : string wrap -> [> `Max ] attrib
              val a_restart :
                [< `Always | `Never | `WhenNotActive ] wrap ->
                [> `Restart ] attrib
              val a_repeatCount : string wrap -> [> `RepeatCount ] attrib
              val a_repeatDur : string wrap -> [> `RepeatDur ] attrib
              val a_fill : Svg_types.paint wrap -> [> `Fill ] attrib
              val a_animation_fill :
                [< `Freeze | `Remove ] wrap -> [> `Fill_Animation ] attrib
              val a_calcMode :
                [< `Discrete | `Linear | `Paced | `Spline ] wrap ->
                [> `CalcMode ] attrib
              val a_animation_values :
                Svg_types.strings wrap -> [> `Valuesanim ] attrib
              val a_keyTimes :
                Svg_types.strings wrap -> [> `KeyTimes ] attrib
              val a_keySplines :
                Svg_types.strings wrap -> [> `KeySplines ] attrib
              val a_from : string wrap -> [> `From ] attrib
              val a_to : string wrap -> [> `To ] attrib
              val a_by : string wrap -> [> `By ] attrib
              val a_additive :
                [< `Replace | `Sum ] wrap -> [> `Additive ] attrib
              val a_accumulate :
                [< `None | `Sum ] wrap -> [> `Accumulate ] attrib
              val a_keyPoints :
                Svg_types.numbers_semicolon wrap -> [> `KeyPoints ] attrib
              val a_path : string wrap -> [> `Path ] attrib
              val a_animateTransform_type :
                [ `Rotate | `Scale | `SkewX | `SkewY | `Translate ] wrap ->
                [ `Typeanimatetransform ] attrib
              val a_horiz_origin_x :
                Svg_types.number wrap -> [> `HorizOriginX ] attrib
              val a_horiz_origin_y :
                Svg_types.number wrap -> [> `HorizOriginY ] attrib
              val a_horiz_adv_x :
                Svg_types.number wrap -> [> `HorizAdvX ] attrib
              val a_vert_origin_x :
                Svg_types.number wrap -> [> `VertOriginX ] attrib
              val a_vert_origin_y :
                Svg_types.number wrap -> [> `VertOriginY ] attrib
              val a_vert_adv_y :
                Svg_types.number wrap -> [> `VertAdvY ] attrib
              val a_unicode : string wrap -> [> `Unicode ] attrib
              val a_glyph_name : string wrap -> [> `glyphname ] attrib
              val a_orientation :
                [< `H | `V ] wrap -> [> `Orientation ] attrib
              val a_arabic_form :
                [< `Initial | `Isolated | `Medial | `Terminal ] wrap ->
                [> `Arabicform ] attrib
              val a_lang : string wrap -> [> `Lang ] attrib
              val a_u1 : string wrap -> [> `U1 ] attrib
              val a_u2 : string wrap -> [> `U2 ] attrib
              val a_g1 : string wrap -> [> `G1 ] attrib
              val a_g2 : string wrap -> [> `G2 ] attrib
              val a_k : string wrap -> [> `K ] attrib
              val a_font_family : string wrap -> [> `Font_Family ] attrib
              val a_font_style : string wrap -> [> `Font_Style ] attrib
              val a_font_variant : string wrap -> [> `Font_Variant ] attrib
              val a_font_weight : string wrap -> [> `Font_Weight ] attrib
              val a_font_stretch : string wrap -> [> `Font_Stretch ] attrib
              val a_font_size : string wrap -> [> `Font_Size ] attrib
              val a_unicode_range : string wrap -> [> `UnicodeRange ] attrib
              val a_units_per_em : string wrap -> [> `UnitsPerEm ] attrib
              val a_stemv : Svg_types.number wrap -> [> `Stemv ] attrib
              val a_stemh : Svg_types.number wrap -> [> `Stemh ] attrib
              val a_slope : Svg_types.number wrap -> [> `Slope ] attrib
              val a_cap_height :
                Svg_types.number wrap -> [> `CapHeight ] attrib
              val a_x_height : Svg_types.number wrap -> [> `XHeight ] attrib
              val a_accent_height :
                Svg_types.number wrap -> [> `AccentHeight ] attrib
              val a_ascent : Svg_types.number wrap -> [> `Ascent ] attrib
              val a_widths : string wrap -> [> `Widths ] attrib
              val a_bbox : string wrap -> [> `Bbox ] attrib
              val a_ideographic :
                Svg_types.number wrap -> [> `Ideographic ] attrib
              val a_alphabetic :
                Svg_types.number wrap -> [> `Alphabetic ] attrib
              val a_mathematical :
                Svg_types.number wrap -> [> `Mathematical ] attrib
              val a_hanging : Svg_types.number wrap -> [> `Hanging ] attrib
              val a_videographic :
                Svg_types.number wrap -> [> `VIdeographic ] attrib
              val a_v_alphabetic :
                Svg_types.number wrap -> [> `VAlphabetic ] attrib
              val a_v_mathematical :
                Svg_types.number wrap -> [> `VMathematical ] attrib
              val a_v_hanging :
                Svg_types.number wrap -> [> `VHanging ] attrib
              val a_underline_position :
                Svg_types.number wrap -> [> `UnderlinePosition ] attrib
              val a_underline_thickness :
                Svg_types.number wrap -> [> `UnderlineThickness ] attrib
              val a_strikethrough_position :
                Svg_types.number wrap -> [> `StrikethroughPosition ] attrib
              val a_strikethrough_thickness :
                Svg_types.number wrap -> [> `StrikethroughThickness ] attrib
              val a_overline_position :
                Svg_types.number wrap -> [> `OverlinePosition ] attrib
              val a_overline_thickness :
                Svg_types.number wrap -> [> `OverlineThickness ] attrib
              val a_string : string wrap -> [> `String ] attrib
              val a_name : string wrap -> [> `Name ] attrib
              val a_alignment_baseline :
                [< `After_edge
                 | `Alphabetic
                 | `Auto
                 | `Baseline
                 | `Before_edge
                 | `Central
                 | `Hanging
                 | `Ideographic
                 | `Inherit
                 | `Mathematical
                 | `Middle
                 | `Text_after_edge
                 | `Text_before_edge ]
                wrap -> [> `Alignment_Baseline ] attrib
              val a_dominant_baseline :
                [< `Alphabetic
                 | `Auto
                 | `Central
                 | `Hanging
                 | `Ideographic
                 | `Inherit
                 | `Mathematical
                 | `Middle
                 | `No_change
                 | `Reset_size
                 | `Text_after_edge
                 | `Text_before_edge
                 | `Use_script ]
                wrap -> [> `Dominant_Baseline ] attrib
              val a_stop_color :
                Svg_types.color wrap -> [> `Stop_Color ] attrib
              val a_stop_opacity :
                Svg_types.number wrap -> [> `Stop_Opacity ] attrib
              val a_stroke : Svg_types.paint wrap -> [> `Stroke ] attrib
              val a_stroke_width :
                Svg_types.Unit.length wrap -> [> `Stroke_Width ] attrib
              val a_stroke_linecap :
                [< `Butt | `Round | `Square ] wrap ->
                [> `Stroke_Linecap ] attrib
              val a_stroke_linejoin :
                [< `Bever | `Miter | `Round ] wrap ->
                [> `Stroke_Linejoin ] attrib
              val a_stroke_miterlimit :
                float wrap -> [> `Stroke_Miterlimit ] attrib
              val a_stroke_dasharray :
                Svg_types.Unit.length list wrap ->
                [> `Stroke_Dasharray ] attrib
              val a_stroke_dashoffset :
                Svg_types.Unit.length wrap -> [> `Stroke_Dashoffset ] attrib
              val a_stroke_opacity :
                float wrap -> [> `Stroke_Opacity ] attrib
              val a_onabort : Xml.event_handler -> [> `OnAbort ] attrib
              val a_onactivate : Xml.event_handler -> [> `OnActivate ] attrib
              val a_onbegin : Xml.event_handler -> [> `OnBegin ] attrib
              val a_onend : Xml.event_handler -> [> `OnEnd ] attrib
              val a_onerror : Xml.event_handler -> [> `OnError ] attrib
              val a_onfocusin : Xml.event_handler -> [> `OnFocusIn ] attrib
              val a_onfocusout : Xml.event_handler -> [> `OnFocusOut ] attrib
              val a_onload : Xml.event_handler -> [> `OnLoad ] attrib
              val a_onrepeat : Xml.event_handler -> [> `OnRepeat ] attrib
              val a_onresize : Xml.event_handler -> [> `OnResize ] attrib
              val a_onscroll : Xml.event_handler -> [> `OnScroll ] attrib
              val a_onunload : Xml.event_handler -> [> `OnUnload ] attrib
              val a_onzoom : Xml.event_handler -> [> `OnZoom ] attrib
              val a_onclick : Xml.mouse_event_handler -> [> `OnClick ] attrib
              val a_onmousedown :
                Xml.mouse_event_handler -> [> `OnMouseDown ] attrib
              val a_onmouseup :
                Xml.mouse_event_handler -> [> `OnMouseUp ] attrib
              val a_onmouseover :
                Xml.mouse_event_handler -> [> `OnMouseOver ] attrib
              val a_onmouseout :
                Xml.mouse_event_handler -> [> `OnMouseOut ] attrib
              val a_onmousemove :
                Xml.mouse_event_handler -> [> `OnMouseMove ] attrib
              val a_ontouchstart :
                Xml.touch_event_handler -> [> `OnTouchStart ] attrib
              val a_ontouchend :
                Xml.touch_event_handler -> [> `OnTouchEnd ] attrib
              val a_ontouchmove :
                Xml.touch_event_handler -> [> `OnTouchMove ] attrib
              val a_ontouchcancel :
                Xml.touch_event_handler -> [> `OnTouchCancel ] attrib
              val txt : string wrap -> [> Svg_types.txt ] elt
              val svg :
                ([< Svg_types.svg_attr ], [< Svg_types.svg_content ],
                 [> Svg_types.svg ])
                star
              val g :
                ([< Svg_types.g_attr ], [< Svg_types.g_content ],
                 [> Svg_types.g ])
                star
              val defs :
                ([< Svg_types.defs_attr ], [< Svg_types.defs_content ],
                 [> Svg_types.defs ])
                star
              val desc :
                ([< Svg_types.desc_attr ], [< Svg_types.desc_content ],
                 [> Svg_types.desc ])
                unary
              val title :
                ([< Svg_types.title_attr ], [< Svg_types.title_content ],
                 [> Svg_types.title ])
                unary
              val symbol :
                ([< Svg_types.symbol_attr ], [< Svg_types.symbol_content ],
                 [> Svg_types.symbol ])
                star
              val use :
                ([< Svg_types.use_attr ], [< Svg_types.use_content ],
                 [> Svg_types.use ])
                star
              val image :
                ([< Svg_types.image_attr ], [< Svg_types.image_content ],
                 [> Svg_types.image ])
                star
              val switch :
                ([< Svg_types.switch_attr ], [< Svg_types.switch_content ],
                 [> Svg_types.switch ])
                star
              val style :
                ([< Svg_types.style_attr ], [< Svg_types.style_content ],
                 [> Svg_types.style ])
                unary
              val path :
                ([< Svg_types.path_attr ], [< Svg_types.path_content ],
                 [> Svg_types.path ])
                star
              val rect :
                ([< Svg_types.rect_attr ], [< Svg_types.rect_content ],
                 [> Svg_types.rect ])
                star
              val circle :
                ([< Svg_types.circle_attr ], [< Svg_types.circle_content ],
                 [> Svg_types.circle ])
                star
              val ellipse :
                ([< Svg_types.ellipse_attr ], [< Svg_types.ellipse_content ],
                 [> Svg_types.ellipse ])
                star
              val line :
                ([< Svg_types.line_attr ], [< Svg_types.line_content ],
                 [> Svg_types.line ])
                star
              val polyline :
                ([< Svg_types.polyline_attr ],
                 [< Svg_types.polyline_content ], [> Svg_types.polyline ])
                star
              val polygon :
                ([< Svg_types.polygon_attr ], [< Svg_types.polygon_content ],
                 [> Svg_types.polygon ])
                star
              val text :
                ([< Svg_types.text_attr ], [< Svg_types.text_content ],
                 [> Svg_types.text ])
                star
              val tspan :
                ([< Svg_types.tspan_attr ], [< Svg_types.tspan_content ],
                 [> Svg_types.tspan ])
                star
              val tref :
                ([< Svg_types.tref_attr ], [< Svg_types.tref_content ],
                 [> Svg_types.tref ])
                star
              val textPath :
                ([< Svg_types.textpath_attr ],
                 [< Svg_types.textpath_content ], [> Svg_types.textpath ])
                star
              val altGlyph :
                ([< Svg_types.altglyph_attr ],
                 [< Svg_types.altglyph_content ], [> Svg_types.altglyph ])
                unary
              type altglyphdef_content =
                  [ `Item of Svg_types.altglyphitem elt list
                  | `Ref of Svg_types.glyphref elt list ]
              val altGlyphDef :
                ([< Svg_types.altglyphdef_attr ], [< altglyphdef_content ],
                 [> Svg_types.altglyphdef ])
                unary
              val altGlyphItem :
                ([< Svg_types.altglyphitem_attr ],
                 [< Svg_types.altglyphitem_content ],
                 [> Svg_types.altglyphitem ])
                star
              val glyphRef :
                ([< Svg_types.glyphref_attr ], [> Svg_types.glyphref ])
                nullary
              val marker :
                ([< Svg_types.marker_attr ], [< Svg_types.marker_content ],
                 [> Svg_types.marker ])
                star
              val color_profile :
                ([< Svg_types.colorprofile_attr ],
                 [< Svg_types.colorprofile_content ],
                 [> Svg_types.colorprofile ])
                star
              val linearGradient :
                ([< Svg_types.lineargradient_attr ],
                 [< Svg_types.lineargradient_content ],
                 [> Svg_types.lineargradient ])
                star
              val radialGradient :
                ([< Svg_types.radialgradient_attr ],
                 [< Svg_types.radialgradient_content ],
                 [> Svg_types.radialgradient ])
                star
              val stop :
                ([< Svg_types.stop_attr ], [< Svg_types.stop_content ],
                 [> Svg_types.stop ])
                star
              val pattern :
                ([< Svg_types.pattern_attr ], [< Svg_types.pattern_content ],
                 [> Svg_types.pattern ])
                star
              val clipPath :
                ([< Svg_types.clippath_attr ],
                 [< Svg_types.clippath_content ], [> Svg_types.clippath ])
                star
              val filter :
                ([< Svg_types.filter_attr ], [< Svg_types.filter_content ],
                 [> Svg_types.filter ])
                star
              val feDistantLight :
                ([< Svg_types.fedistantlight_attr ],
                 [< Svg_types.fedistantlight_content ],
                 [> Svg_types.fedistantlight ])
                star
              val fePointLight :
                ([< Svg_types.fepointlight_attr ],
                 [< Svg_types.fepointlight_content ],
                 [> Svg_types.fepointlight ])
                star
              val feSpotLight :
                ([< Svg_types.fespotlight_attr ],
                 [< Svg_types.fespotlight_content ],
                 [> Svg_types.fespotlight ])
                star
              val feBlend :
                ([< Svg_types.feblend_attr ], [< Svg_types.feblend_content ],
                 [> Svg_types.feblend ])
                star
              val feColorMatrix :
                ([< Svg_types.fecolormatrix_attr ],
                 [< Svg_types.fecolormatrix_content ],
                 [> Svg_types.fecolormatrix ])
                star
              val feComponentTransfer :
                ([< Svg_types.fecomponenttransfer_attr ],
                 [< Svg_types.fecomponenttransfer_content ],
                 [> Svg_types.fecomponenttransfer ])
                star
              val feFuncA :
                ([< Svg_types.fefunca_attr ], [< Svg_types.fefunca_content ],
                 [> Svg_types.fefunca ])
                star
              val feFuncG :
                ([< Svg_types.fefuncg_attr ], [< Svg_types.fefuncg_content ],
                 [> Svg_types.fefuncg ])
                star
              val feFuncB :
                ([< Svg_types.fefuncb_attr ], [< Svg_types.fefuncb_content ],
                 [> Svg_types.fefuncb ])
                star
              val feFuncR :
                ([< Svg_types.fefuncr_attr ], [< Svg_types.fefuncr_content ],
                 [> Svg_types.fefuncr ])
                star
              val feComposite :
                ([< Svg_types.fecomposite_attr ],
                 [< Svg_types.fecomposite_content ],
                 [> Svg_types.fecomposite ])
                star
              val feConvolveMatrix :
                ([< Svg_types.feconvolvematrix_attr ],
                 [< Svg_types.feconvolvematrix_content ],
                 [> Svg_types.feconvolvematrix ])
                star
              val feDiffuseLighting :
                ([< Svg_types.fediffuselighting_attr ],
                 [< Svg_types.fediffuselighting_content ],
                 [> Svg_types.fediffuselighting ])
                star
              val feDisplacementMap :
                ([< Svg_types.fedisplacementmap_attr ],
                 [< Svg_types.fedisplacementmap_content ],
                 [> Svg_types.fedisplacementmap ])
                star
              val feFlood :
                ([< Svg_types.feflood_attr ], [< Svg_types.feflood_content ],
                 [> Svg_types.feflood ])
                star
              val feGaussianBlur :
                ([< Svg_types.fegaussianblur_attr ],
                 [< Svg_types.fegaussianblur_content ],
                 [> Svg_types.fegaussianblur ])
                star
              val feImage :
                ([< Svg_types.feimage_attr ], [< Svg_types.feimage_content ],
                 [> Svg_types.feimage ])
                star
              val feMerge :
                ([< Svg_types.femerge_attr ], [< Svg_types.femerge_content ],
                 [> Svg_types.femerge ])
                star
              val feMorphology :
                ([< Svg_types.femorphology_attr ],
                 [< Svg_types.femorphology_content ],
                 [> Svg_types.femorphology ])
                star
              val feOffset :
                ([< Svg_types.feoffset_attr ],
                 [< Svg_types.feoffset_content ], [> Svg_types.feoffset ])
                star
              val feSpecularLighting :
                ([< Svg_types.fespecularlighting_attr ],
                 [< Svg_types.fespecularlighting_content ],
                 [> Svg_types.fespecularlighting ])
                star
              val feTile :
                ([< Svg_types.fetile_attr ], [< Svg_types.fetile_content ],
                 [> Svg_types.fetile ])
                star
              val feTurbulence :
                ([< Svg_types.feturbulence_attr ],
                 [< Svg_types.feturbulence_content ],
                 [> Svg_types.feturbulence ])
                star
              val cursor :
                ([< Svg_types.cursor_attr ], [< Svg_types.cursor_content ],
                 [> Svg_types.cursor ])
                star
              val a :
                ([< Svg_types.a_attr ], [< Svg_types.a_content ],
                 [> Svg_types.a ])
                star
              val view :
                ([< Svg_types.view_attr ], [< Svg_types.view_content ],
                 [> Svg_types.view ])
                star
              val script :
                ([< Svg_types.script_attr ], [< Svg_types.script_content ],
                 [> Svg_types.script ])
                unary
              val animation :
                ([< Svg_types.animation_attr ],
                 [< Svg_types.animation_content ], [> Svg_types.animation ])
                star
              val set :
                ([< Svg_types.set_attr ], [< Svg_types.set_content ],
                 [> Svg_types.set ])
                star
              val animateMotion :
                ([< Svg_types.animatemotion_attr ],
                 [< Svg_types.animatemotion_content ],
                 [> Svg_types.animatemotion ])
                star
              val mpath :
                ([< Svg_types.mpath_attr ], [< Svg_types.mpath_content ],
                 [> Svg_types.mpath ])
                star
              val animateColor :
                ([< Svg_types.animatecolor_attr ],
                 [< Svg_types.animatecolor_content ],
                 [> Svg_types.animatecolor ])
                star
              val animateTransform :
                ([< Svg_types.animatetransform_attr ],
                 [< Svg_types.animatetransform_content ],
                 [> Svg_types.animatetransform ])
                star
              val font :
                ([< Svg_types.font_attr ], [< Svg_types.font_content ],
                 [> Svg_types.font ])
                star
              val glyph :
                ([< Svg_types.glyph_attr ], [< Svg_types.glyph_content ],
                 [> Svg_types.glyph ])
                star
              val missing_glyph :
                ([< Svg_types.missingglyph_attr ],
                 [< Svg_types.missingglyph_content ],
                 [> Svg_types.missingglyph ])
                star
              val hkern :
                ([< Svg_types.hkern_attr ], [> Svg_types.hkern ]) nullary
              val vkern :
                ([< Svg_types.vkern_attr ], [> Svg_types.vkern ]) nullary
              val font_face :
                ([< Svg_types.font_face_attr ], [> Svg_types.font_face ])
                nullary
              val font_face_src :
                ([< Svg_types.font_face_src_attr ],
                 [< Svg_types.font_face_src_content ],
                 [> Svg_types.font_face_src ])
                star
              val font_face_uri :
                ([< Svg_types.font_face_uri_attr ],
                 [< Svg_types.font_face_uri_content ],
                 [> Svg_types.font_face_uri ])
                star
              val font_face_format :
                ([< Svg_types.font_face_format_attr ],
                 [> Svg_types.font_face_format ])
                nullary
              val font_face_name :
                ([< Svg_types.font_face_name_attr ],
                 [> Svg_types.font_face_name ])
                nullary
              val metadata :
                ?a:Svg_types.metadata_attr attrib list ->
                Xml.elt list_wrap -> [> Svg_types.metadata ] elt
              val foreignObject :
                ?a:Svg_types.foreignobject_attr attrib list ->
                Xml.elt list_wrap -> [> Svg_types.foreignobject ] elt
              val pcdata : string wrap -> [> Svg_types.txt ] elt
              val of_seq : Xml_stream.signal Seq.t -> 'a elt list_wrap
              val tot : Xml.elt -> 'a elt
              val totl : Xml.elt list_wrap -> 'a elt list_wrap
              val toelt : 'a elt -> Xml.elt
              val toeltl : 'a elt list_wrap -> Xml.elt list_wrap
              val doc_toelt : doc -> Xml.elt
              val to_xmlattribs : 'a attrib list -> Xml.attrib list
              val to_attrib : Xml.attrib -> 'a attrib
              module Unsafe :
                sig
                  val data : string wrap -> 'a elt
                  val node :
                    string -> ?a:'a attrib list -> 'b elt list_wrap -> 'c elt
                  val leaf : string -> ?a:'a attrib list -> unit -> 'b elt
                  val coerce_elt : 'a elt -> 'b elt
                  val string_attrib : string -> string wrap -> 'a attrib
                  val float_attrib : string -> float wrap -> 'a attrib
                  val int_attrib : string -> int wrap -> 'a attrib
                  val uri_attrib : string -> uri wrap -> 'a attrib
                  val space_sep_attrib :
                    string -> string list wrap -> 'a attrib
                  val comma_sep_attrib :
                    string -> string list wrap -> 'a attrib
                end
            end
          type 'a elt = 'a elt
          type doc = [ `Svg ] elt
          type 'a attrib = 'a attrib
          module Xml :
            sig
              module W :
                sig
                  type 'a t = 'Xml.W.t
                  val return : '-> 'a t
                  type ('a, 'b) ft = ('a, 'b) Xml.W.ft
                  val fmap : ('a, 'b) ft -> 'a t -> 'b t
                  type 'a tlist = 'Xml.W.tlist
                  val nil : unit -> 'a tlist
                  val singleton : 'a t -> 'a tlist
                  val cons : 'a t -> 'a tlist -> 'a tlist
                  val append : 'a tlist -> 'a tlist -> 'a tlist
                  val map : ('a, 'b) ft -> 'a tlist -> 'b tlist
                end
              type 'a wrap = 'W.t
              type 'a list_wrap = 'W.tlist
              type uri = Xml.uri
              val string_of_uri : (uri, string) W.ft
              val uri_of_string : (string, uri) W.ft
              type aname = string
              type event_handler = Xml.event_handler
              type mouse_event_handler = Xml.mouse_event_handler
              type keyboard_event_handler = Xml.keyboard_event_handler
              type touch_event_handler = Xml.touch_event_handler
              type attrib = Xml.attrib
              val float_attrib : aname -> float wrap -> attrib
              val int_attrib : aname -> int wrap -> attrib
              val string_attrib : aname -> string wrap -> attrib
              val space_sep_attrib : aname -> string list wrap -> attrib
              val comma_sep_attrib : aname -> string list wrap -> attrib
              val event_handler_attrib : aname -> event_handler -> attrib
              val mouse_event_handler_attrib :
                aname -> mouse_event_handler -> attrib
              val keyboard_event_handler_attrib :
                aname -> keyboard_event_handler -> attrib
              val touch_event_handler_attrib :
                aname -> touch_event_handler -> attrib
              val uri_attrib : aname -> uri wrap -> attrib
              val uris_attrib : aname -> uri list wrap -> attrib
              type elt = Xml.elt
              type ename = string
              val empty : unit -> elt
              val comment : string -> elt
              val pcdata : string wrap -> elt
              val encodedpcdata : string wrap -> elt
              val entity : string -> elt
              val leaf : ?a:attrib list -> ename -> elt
              val node : ?a:attrib list -> ename -> elt list_wrap -> elt
              val cdata : string -> elt
              val cdata_script : string -> elt
              val cdata_style : string -> elt
            end
          type 'a wrap = 'Xml.W.t
          type 'a list_wrap = 'Xml.W.tlist
          type ('a, 'b) nullary = ?a:'a attrib list -> unit -> 'b elt
          type ('a, 'b, 'c) unary =
              ?a:'a attrib list -> 'b elt wrap -> 'c elt
          type ('a, 'b, 'c) star =
              ?a:'a attrib list -> 'b elt list_wrap -> 'c elt
          module Info : Xml_sigs.Info
          type uri = Xml.uri
          val string_of_uri : (uri, string) Xml.W.ft
          val uri_of_string : (string, uri) Xml.W.ft
          val a_version : string wrap -> [> `Version ] attrib
          val a_baseProfile : string wrap -> [> `BaseProfile ] attrib
          val a_x : Svg_types.coord wrap -> [> `X ] attrib
          val a_y : Svg_types.coord wrap -> [> `Y ] attrib
          val a_width : Svg_types.Unit.length wrap -> [> `Width ] attrib
          val a_height : Svg_types.Unit.length wrap -> [> `Height ] attrib
          val a_preserveAspectRatio :
            string wrap -> [> `PreserveAspectRatio ] attrib
          val a_contentScriptType :
            string wrap -> [> `ContentScriptType ] attrib
          val a_contentStyleType :
            string wrap -> [> `ContentStyleType ] attrib
          val a_zoomAndPan :
            [< `Disable | `Magnify ] wrap -> [> `ZoomAndSpan ] attrib
          val a_href : Svg_types.iri wrap -> [> `Xlink_href ] attrib
          val a_xlink_href : Svg_types.iri wrap -> [> `Xlink_href ] attrib
          val a_requiredFeatures :
            Svg_types.spacestrings wrap -> [> `RequiredFeatures ] attrib
          val a_requiredExtensions :
            Svg_types.spacestrings wrap -> [> `RequiredExtension ] attrib
          val a_systemLanguage :
            Svg_types.commastrings wrap -> [> `SystemLanguage ] attrib
          val a_externalRessourcesRequired :
            bool wrap -> [> `ExternalRessourcesRequired ] attrib
          val a_id : string wrap -> [> `Id ] attrib
          val a_user_data : string -> string wrap -> [> `User_data ] attrib
          val a_xml_base : Svg_types.iri wrap -> [> `Xml_Base ] attrib
          val a_xml_lang : Svg_types.iri wrap -> [> `Xml_Lang ] attrib
          val a_xml_space :
            [< `Default | `Preserve ] wrap -> [> `Xml_Space ] attrib
          val a_type : string wrap -> [> `Type ] attrib
          val a_media : Svg_types.commastrings wrap -> [> `Media ] attrib
          val a_xlink_title : string wrap -> [> `Title ] attrib
          val a_class : Svg_types.spacestrings wrap -> [> `Class ] attrib
          val a_style : string wrap -> [> `Style ] attrib
          val a_transform :
            Svg_types.transforms wrap -> [> `Transform ] attrib
          val a_viewBox : Svg_types.fourfloats wrap -> [> `ViewBox ] attrib
          val a_d : string wrap -> [> `D ] attrib
          val a_pathLength : float wrap -> [> `PathLength ] attrib
          val a_rx : Svg_types.Unit.length wrap -> [> `Rx ] attrib
          val a_ry : Svg_types.Unit.length wrap -> [> `Ry ] attrib
          val a_cx : Svg_types.Unit.length wrap -> [> `Cx ] attrib
          val a_cy : Svg_types.Unit.length wrap -> [> `Cy ] attrib
          val a_r : Svg_types.Unit.length wrap -> [> `R ] attrib
          val a_x1 : Svg_types.coord wrap -> [> `X1 ] attrib
          val a_y1 : Svg_types.coord wrap -> [> `Y1 ] attrib
          val a_x2 : Svg_types.coord wrap -> [> `X2 ] attrib
          val a_y2 : Svg_types.coord wrap -> [> `Y2 ] attrib
          val a_points : Svg_types.coords wrap -> [> `Points ] attrib
          val a_x_list : Svg_types.lengths wrap -> [> `X_list ] attrib
          val a_y_list : Svg_types.lengths wrap -> [> `Y_list ] attrib
          val a_dx : Svg_types.number wrap -> [> `Dx ] attrib
          val a_dy : Svg_types.number wrap -> [> `Dy ] attrib
          val a_dx_list : Svg_types.lengths wrap -> [> `Dx_list ] attrib
          val a_dy_list : Svg_types.lengths wrap -> [> `Dy_list ] attrib
          val a_lengthAdjust :
            [< `Spacing | `SpacingAndGlyphs ] wrap ->
            [> `LengthAdjust ] attrib
          val a_textLength :
            Svg_types.Unit.length wrap -> [> `TextLength ] attrib
          val a_text_anchor :
            [< `End | `Inherit | `Middle | `Start ] wrap ->
            [> `Text_Anchor ] attrib
          val a_text_decoration :
            [< `Blink
             | `Inherit
             | `Line_through
             | `None
             | `Overline
             | `Underline ]
            wrap -> [> `Text_Decoration ] attrib
          val a_text_rendering :
            [< `Auto
             | `GeometricPrecision
             | `Inherit
             | `OptimizeLegibility
             | `OptimizeSpeed ]
            wrap -> [> `Text_Rendering ] attrib
          val a_rotate : Svg_types.numbers wrap -> [> `Rotate ] attrib
          val a_startOffset :
            Svg_types.Unit.length wrap -> [> `StartOffset ] attrib
          val a_method : [< `Align | `Stretch ] wrap -> [> `Method ] attrib
          val a_spacing : [< `Auto | `Exact ] wrap -> [> `Spacing ] attrib
          val a_glyphRef : string wrap -> [> `GlyphRef ] attrib
          val a_format : string wrap -> [> `Format ] attrib
          val a_markerUnits :
            [< `StrokeWidth | `UserSpaceOnUse ] wrap ->
            [> `MarkerUnits ] attrib
          val a_refX : Svg_types.coord wrap -> [> `RefX ] attrib
          val a_refY : Svg_types.coord wrap -> [> `RefY ] attrib
          val a_markerWidth :
            Svg_types.Unit.length wrap -> [> `MarkerWidth ] attrib
          val a_markerHeight :
            Svg_types.Unit.length wrap -> [> `MarkerHeight ] attrib
          val a_orient :
            Svg_types.Unit.angle option wrap -> [> `Orient ] attrib
          val a_local : string wrap -> [> `Local ] attrib
          val a_rendering_intent :
            [< `Absolute_colorimetric
             | `Auto
             | `Perceptual
             | `Relative_colorimetric
             | `Saturation ]
            wrap -> [> `Rendering_Indent ] attrib
          val a_gradientUnits :
            [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
            [ `GradientUnits ] attrib
          val a_gradientTransform :
            Svg_types.transforms wrap -> [> `Gradient_Transform ] attrib
          val a_spreadMethod :
            [< `Pad | `Reflect | `Repeat ] wrap -> [> `SpreadMethod ] attrib
          val a_fx : Svg_types.coord wrap -> [> `Fx ] attrib
          val a_fy : Svg_types.coord wrap -> [> `Fy ] attrib
          val a_offset :
            [< `Number of Svg_types.number
             | `Percentage of Svg_types.percentage ]
            wrap -> [> `Offset ] attrib
          val a_patternUnits :
            [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
            [> `PatternUnits ] attrib
          val a_patternContentUnits :
            [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
            [> `PatternContentUnits ] attrib
          val a_patternTransform :
            Svg_types.transforms wrap -> [> `PatternTransform ] attrib
          val a_clipPathUnits :
            [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
            [> `ClipPathUnits ] attrib
          val a_maskUnits :
            [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
            [> `MaskUnits ] attrib
          val a_maskContentUnits :
            [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
            [> `MaskContentUnits ] attrib
          val a_primitiveUnits :
            [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
            [> `PrimitiveUnits ] attrib
          val a_filterRes :
            Svg_types.number_optional_number wrap ->
            [> `FilterResUnits ] attrib
          val a_result : string wrap -> [> `Result ] attrib
          val a_in :
            [< `BackgroundAlpha
             | `BackgroundImage
             | `FillPaint
             | `Ref of string
             | `SourceAlpha
             | `SourceGraphic
             | `StrokePaint ]
            wrap -> [> `In ] attrib
          val a_in2 :
            [< `BackgroundAlpha
             | `BackgroundImage
             | `FillPaint
             | `Ref of string
             | `SourceAlpha
             | `SourceGraphic
             | `StrokePaint ]
            wrap -> [> `In2 ] attrib
          val a_azimuth : float wrap -> [> `Azimuth ] attrib
          val a_elevation : float wrap -> [> `Elevation ] attrib
          val a_pointsAtX : float wrap -> [> `PointsAtX ] attrib
          val a_pointsAtY : float wrap -> [> `PointsAtY ] attrib
          val a_pointsAtZ : float wrap -> [> `PointsAtZ ] attrib
          val a_specularExponent :
            float wrap -> [> `SpecularExponent ] attrib
          val a_specularConstant :
            float wrap -> [> `SpecularConstant ] attrib
          val a_limitingConeAngle :
            float wrap -> [> `LimitingConeAngle ] attrib
          val a_mode :
            [< `Darken | `Lighten | `Multiply | `Normal | `Screen ] wrap ->
            [> `Mode ] attrib
          val a_feColorMatrix_type :
            [< `HueRotate | `LuminanceToAlpha | `Matrix | `Saturate ] wrap ->
            [> `Typefecolor ] attrib
          val a_values : Svg_types.numbers wrap -> [> `Values ] attrib
          val a_transfer_type :
            [< `Discrete | `Gamma | `Identity | `Linear | `Table ] wrap ->
            [> `Type_transfert ] attrib
          val a_tableValues :
            Svg_types.numbers wrap -> [> `TableValues ] attrib
          val a_intercept : Svg_types.number wrap -> [> `Intercept ] attrib
          val a_amplitude : Svg_types.number wrap -> [> `Amplitude ] attrib
          val a_exponent : Svg_types.number wrap -> [> `Exponent ] attrib
          val a_transfer_offset :
            Svg_types.number wrap -> [> `Offset_transfer ] attrib
          val a_feComposite_operator :
            [< `Arithmetic | `Atop | `In | `Out | `Over | `Xor ] wrap ->
            [> `OperatorComposite ] attrib
          val a_k1 : Svg_types.number wrap -> [> `K1 ] attrib
          val a_k2 : Svg_types.number wrap -> [> `K2 ] attrib
          val a_k3 : Svg_types.number wrap -> [> `K3 ] attrib
          val a_k4 : Svg_types.number wrap -> [> `K4 ] attrib
          val a_order :
            Svg_types.number_optional_number wrap -> [> `Order ] attrib
          val a_kernelMatrix :
            Svg_types.numbers wrap -> [> `KernelMatrix ] attrib
          val a_divisor : Svg_types.number wrap -> [> `Divisor ] attrib
          val a_bias : Svg_types.number wrap -> [> `Bias ] attrib
          val a_kernelUnitLength :
            Svg_types.number_optional_number wrap ->
            [> `KernelUnitLength ] attrib
          val a_targetX : int wrap -> [> `TargetX ] attrib
          val a_targetY : int wrap -> [> `TargetY ] attrib
          val a_edgeMode :
            [< `Duplicate | `None | `Wrap ] wrap -> [> `TargetY ] attrib
          val a_preserveAlpha : bool wrap -> [> `TargetY ] attrib
          val a_surfaceScale :
            Svg_types.number wrap -> [> `SurfaceScale ] attrib
          val a_diffuseConstant :
            Svg_types.number wrap -> [> `DiffuseConstant ] attrib
          val a_scale : Svg_types.number wrap -> [> `Scale ] attrib
          val a_xChannelSelector :
            [< `A | `B | `G | `R ] wrap -> [> `XChannelSelector ] attrib
          val a_yChannelSelector :
            [< `A | `B | `G | `R ] wrap -> [> `YChannelSelector ] attrib
          val a_stdDeviation :
            Svg_types.number_optional_number wrap ->
            [> `StdDeviation ] attrib
          val a_feMorphology_operator :
            [< `Dilate | `Erode ] wrap -> [> `OperatorMorphology ] attrib
          val a_radius :
            Svg_types.number_optional_number wrap -> [> `Radius ] attrib
          val a_baseFrenquency :
            Svg_types.number_optional_number wrap ->
            [> `BaseFrequency ] attrib
          val a_numOctaves : int wrap -> [> `NumOctaves ] attrib
          val a_seed : Svg_types.number wrap -> [> `Seed ] attrib
          val a_stitchTiles :
            [< `NoStitch | `Stitch ] wrap -> [> `StitchTiles ] attrib
          val a_feTurbulence_type :
            [< `FractalNoise | `Turbulence ] wrap -> [> `TypeStitch ] attrib
          val a_xlink_show :
            [< `New | `Replace ] wrap -> [> `Xlink_show ] attrib
          val a_xlink_actuate :
            [< `None | `OnLoad | `OnRequest | `Other ] wrap ->
            [> `Xlink_actuate ] attrib
          val a_target : string wrap -> [> `Xlink_target ] attrib
          val a_viewTarget : string wrap -> [> `ViewTarget ] attrib
          val a_attributeName : string wrap -> [> `AttributeName ] attrib
          val a_attributeType :
            [< `Auto | `CSS | `XML ] wrap -> [> `AttributeType ] attrib
          val a_begin : string wrap -> [> `Begin ] attrib
          val a_dur : string wrap -> [> `Dur ] attrib
          val a_min : string wrap -> [> `Min ] attrib
          val a_max : string wrap -> [> `Max ] attrib
          val a_restart :
            [< `Always | `Never | `WhenNotActive ] wrap ->
            [> `Restart ] attrib
          val a_repeatCount : string wrap -> [> `RepeatCount ] attrib
          val a_repeatDur : string wrap -> [> `RepeatDur ] attrib
          val a_fill : Svg_types.paint wrap -> [> `Fill ] attrib
          val a_animation_fill :
            [< `Freeze | `Remove ] wrap -> [> `Fill_Animation ] attrib
          val a_calcMode :
            [< `Discrete | `Linear | `Paced | `Spline ] wrap ->
            [> `CalcMode ] attrib
          val a_animation_values :
            Svg_types.strings wrap -> [> `Valuesanim ] attrib
          val a_keyTimes : Svg_types.strings wrap -> [> `KeyTimes ] attrib
          val a_keySplines :
            Svg_types.strings wrap -> [> `KeySplines ] attrib
          val a_from : string wrap -> [> `From ] attrib
          val a_to : string wrap -> [> `To ] attrib
          val a_by : string wrap -> [> `By ] attrib
          val a_additive : [< `Replace | `Sum ] wrap -> [> `Additive ] attrib
          val a_accumulate :
            [< `None | `Sum ] wrap -> [> `Accumulate ] attrib
          val a_keyPoints :
            Svg_types.numbers_semicolon wrap -> [> `KeyPoints ] attrib
          val a_path : string wrap -> [> `Path ] attrib
          val a_animateTransform_type :
            [ `Rotate | `Scale | `SkewX | `SkewY | `Translate ] wrap ->
            [ `Typeanimatetransform ] attrib
          val a_horiz_origin_x :
            Svg_types.number wrap -> [> `HorizOriginX ] attrib
          val a_horiz_origin_y :
            Svg_types.number wrap -> [> `HorizOriginY ] attrib
          val a_horiz_adv_x : Svg_types.number wrap -> [> `HorizAdvX ] attrib
          val a_vert_origin_x :
            Svg_types.number wrap -> [> `VertOriginX ] attrib
          val a_vert_origin_y :
            Svg_types.number wrap -> [> `VertOriginY ] attrib
          val a_vert_adv_y : Svg_types.number wrap -> [> `VertAdvY ] attrib
          val a_unicode : string wrap -> [> `Unicode ] attrib
          val a_glyph_name : string wrap -> [> `glyphname ] attrib
          val a_orientation : [< `H | `V ] wrap -> [> `Orientation ] attrib
          val a_arabic_form :
            [< `Initial | `Isolated | `Medial | `Terminal ] wrap ->
            [> `Arabicform ] attrib
          val a_lang : string wrap -> [> `Lang ] attrib
          val a_u1 : string wrap -> [> `U1 ] attrib
          val a_u2 : string wrap -> [> `U2 ] attrib
          val a_g1 : string wrap -> [> `G1 ] attrib
          val a_g2 : string wrap -> [> `G2 ] attrib
          val a_k : string wrap -> [> `K ] attrib
          val a_font_family : string wrap -> [> `Font_Family ] attrib
          val a_font_style : string wrap -> [> `Font_Style ] attrib
          val a_font_variant : string wrap -> [> `Font_Variant ] attrib
          val a_font_weight : string wrap -> [> `Font_Weight ] attrib
          val a_font_stretch : string wrap -> [> `Font_Stretch ] attrib
          val a_font_size : string wrap -> [> `Font_Size ] attrib
          val a_unicode_range : string wrap -> [> `UnicodeRange ] attrib
          val a_units_per_em : string wrap -> [> `UnitsPerEm ] attrib
          val a_stemv : Svg_types.number wrap -> [> `Stemv ] attrib
          val a_stemh : Svg_types.number wrap -> [> `Stemh ] attrib
          val a_slope : Svg_types.number wrap -> [> `Slope ] attrib
          val a_cap_height : Svg_types.number wrap -> [> `CapHeight ] attrib
          val a_x_height : Svg_types.number wrap -> [> `XHeight ] attrib
          val a_accent_height :
            Svg_types.number wrap -> [> `AccentHeight ] attrib
          val a_ascent : Svg_types.number wrap -> [> `Ascent ] attrib
          val a_widths : string wrap -> [> `Widths ] attrib
          val a_bbox : string wrap -> [> `Bbox ] attrib
          val a_ideographic :
            Svg_types.number wrap -> [> `Ideographic ] attrib
          val a_alphabetic : Svg_types.number wrap -> [> `Alphabetic ] attrib
          val a_mathematical :
            Svg_types.number wrap -> [> `Mathematical ] attrib
          val a_hanging : Svg_types.number wrap -> [> `Hanging ] attrib
          val a_videographic :
            Svg_types.number wrap -> [> `VIdeographic ] attrib
          val a_v_alphabetic :
            Svg_types.number wrap -> [> `VAlphabetic ] attrib
          val a_v_mathematical :
            Svg_types.number wrap -> [> `VMathematical ] attrib
          val a_v_hanging : Svg_types.number wrap -> [> `VHanging ] attrib
          val a_underline_position :
            Svg_types.number wrap -> [> `UnderlinePosition ] attrib
          val a_underline_thickness :
            Svg_types.number wrap -> [> `UnderlineThickness ] attrib
          val a_strikethrough_position :
            Svg_types.number wrap -> [> `StrikethroughPosition ] attrib
          val a_strikethrough_thickness :
            Svg_types.number wrap -> [> `StrikethroughThickness ] attrib
          val a_overline_position :
            Svg_types.number wrap -> [> `OverlinePosition ] attrib
          val a_overline_thickness :
            Svg_types.number wrap -> [> `OverlineThickness ] attrib
          val a_string : string wrap -> [> `String ] attrib
          val a_name : string wrap -> [> `Name ] attrib
          val a_alignment_baseline :
            [< `After_edge
             | `Alphabetic
             | `Auto
             | `Baseline
             | `Before_edge
             | `Central
             | `Hanging
             | `Ideographic
             | `Inherit
             | `Mathematical
             | `Middle
             | `Text_after_edge
             | `Text_before_edge ]
            wrap -> [> `Alignment_Baseline ] attrib
          val a_dominant_baseline :
            [< `Alphabetic
             | `Auto
             | `Central
             | `Hanging
             | `Ideographic
             | `Inherit
             | `Mathematical
             | `Middle
             | `No_change
             | `Reset_size
             | `Text_after_edge
             | `Text_before_edge
             | `Use_script ]
            wrap -> [> `Dominant_Baseline ] attrib
          val a_stop_color : Svg_types.color wrap -> [> `Stop_Color ] attrib
          val a_stop_opacity :
            Svg_types.number wrap -> [> `Stop_Opacity ] attrib
          val a_stroke : Svg_types.paint wrap -> [> `Stroke ] attrib
          val a_stroke_width :
            Svg_types.Unit.length wrap -> [> `Stroke_Width ] attrib
          val a_stroke_linecap :
            [< `Butt | `Round | `Square ] wrap -> [> `Stroke_Linecap ] attrib
          val a_stroke_linejoin :
            [< `Bever | `Miter | `Round ] wrap ->
            [> `Stroke_Linejoin ] attrib
          val a_stroke_miterlimit :
            float wrap -> [> `Stroke_Miterlimit ] attrib
          val a_stroke_dasharray :
            Svg_types.Unit.length list wrap -> [> `Stroke_Dasharray ] attrib
          val a_stroke_dashoffset :
            Svg_types.Unit.length wrap -> [> `Stroke_Dashoffset ] attrib
          val a_stroke_opacity : float wrap -> [> `Stroke_Opacity ] attrib
          val a_onabort : Xml.event_handler -> [> `OnAbort ] attrib
          val a_onactivate : Xml.event_handler -> [> `OnActivate ] attrib
          val a_onbegin : Xml.event_handler -> [> `OnBegin ] attrib
          val a_onend : Xml.event_handler -> [> `OnEnd ] attrib
          val a_onerror : Xml.event_handler -> [> `OnError ] attrib
          val a_onfocusin : Xml.event_handler -> [> `OnFocusIn ] attrib
          val a_onfocusout : Xml.event_handler -> [> `OnFocusOut ] attrib
          val a_onload : Xml.event_handler -> [> `OnLoad ] attrib
          val a_onrepeat : Xml.event_handler -> [> `OnRepeat ] attrib
          val a_onresize : Xml.event_handler -> [> `OnResize ] attrib
          val a_onscroll : Xml.event_handler -> [> `OnScroll ] attrib
          val a_onunload : Xml.event_handler -> [> `OnUnload ] attrib
          val a_onzoom : Xml.event_handler -> [> `OnZoom ] attrib
          val a_onclick : Xml.mouse_event_handler -> [> `OnClick ] attrib
          val a_onmousedown :
            Xml.mouse_event_handler -> [> `OnMouseDown ] attrib
          val a_onmouseup : Xml.mouse_event_handler -> [> `OnMouseUp ] attrib
          val a_onmouseover :
            Xml.mouse_event_handler -> [> `OnMouseOver ] attrib
          val a_onmouseout :
            Xml.mouse_event_handler -> [> `OnMouseOut ] attrib
          val a_onmousemove :
            Xml.mouse_event_handler -> [> `OnMouseMove ] attrib
          val a_ontouchstart :
            Xml.touch_event_handler -> [> `OnTouchStart ] attrib
          val a_ontouchend :
            Xml.touch_event_handler -> [> `OnTouchEnd ] attrib
          val a_ontouchmove :
            Xml.touch_event_handler -> [> `OnTouchMove ] attrib
          val a_ontouchcancel :
            Xml.touch_event_handler -> [> `OnTouchCancel ] attrib
          val txt : string wrap -> [> Svg_types.txt ] elt
          val svg :
            ([< Svg_types.svg_attr ], [< Svg_types.svg_content ],
             [> Svg_types.svg ])
            star
          val g :
            ([< Svg_types.g_attr ], [< Svg_types.g_content ],
             [> Svg_types.g ])
            star
          val defs :
            ([< Svg_types.defs_attr ], [< Svg_types.defs_content ],
             [> Svg_types.defs ])
            star
          val desc :
            ([< Svg_types.desc_attr ], [< Svg_types.desc_content ],
             [> Svg_types.desc ])
            unary
          val title :
            ([< Svg_types.title_attr ], [< Svg_types.title_content ],
             [> Svg_types.title ])
            unary
          val symbol :
            ([< Svg_types.symbol_attr ], [< Svg_types.symbol_content ],
             [> Svg_types.symbol ])
            star
          val use :
            ([< Svg_types.use_attr ], [< Svg_types.use_content ],
             [> Svg_types.use ])
            star
          val image :
            ([< Svg_types.image_attr ], [< Svg_types.image_content ],
             [> Svg_types.image ])
            star
          val switch :
            ([< Svg_types.switch_attr ], [< Svg_types.switch_content ],
             [> Svg_types.switch ])
            star
          val style :
            ([< Svg_types.style_attr ], [< Svg_types.style_content ],
             [> Svg_types.style ])
            unary
          val path :
            ([< Svg_types.path_attr ], [< Svg_types.path_content ],
             [> Svg_types.path ])
            star
          val rect :
            ([< Svg_types.rect_attr ], [< Svg_types.rect_content ],
             [> Svg_types.rect ])
            star
          val circle :
            ([< Svg_types.circle_attr ], [< Svg_types.circle_content ],
             [> Svg_types.circle ])
            star
          val ellipse :
            ([< Svg_types.ellipse_attr ], [< Svg_types.ellipse_content ],
             [> Svg_types.ellipse ])
            star
          val line :
            ([< Svg_types.line_attr ], [< Svg_types.line_content ],
             [> Svg_types.line ])
            star
          val polyline :
            ([< Svg_types.polyline_attr ], [< Svg_types.polyline_content ],
             [> Svg_types.polyline ])
            star
          val polygon :
            ([< Svg_types.polygon_attr ], [< Svg_types.polygon_content ],
             [> Svg_types.polygon ])
            star
          val text :
            ([< Svg_types.text_attr ], [< Svg_types.text_content ],
             [> Svg_types.text ])
            star
          val tspan :
            ([< Svg_types.tspan_attr ], [< Svg_types.tspan_content ],
             [> Svg_types.tspan ])
            star
          val tref :
            ([< Svg_types.tref_attr ], [< Svg_types.tref_content ],
             [> Svg_types.tref ])
            star
          val textPath :
            ([< Svg_types.textpath_attr ], [< Svg_types.textpath_content ],
             [> Svg_types.textpath ])
            star
          val altGlyph :
            ([< Svg_types.altglyph_attr ], [< Svg_types.altglyph_content ],
             [> Svg_types.altglyph ])
            unary
          type altglyphdef_content =
              [ `Item of Svg_types.altglyphitem elt list
              | `Ref of Svg_types.glyphref elt list ]
          val altGlyphDef :
            ([< Svg_types.altglyphdef_attr ], [< altglyphdef_content ],
             [> Svg_types.altglyphdef ])
            unary
          val altGlyphItem :
            ([< Svg_types.altglyphitem_attr ],
             [< Svg_types.altglyphitem_content ],
             [> Svg_types.altglyphitem ])
            star
          val glyphRef :
            ([< Svg_types.glyphref_attr ], [> Svg_types.glyphref ]) nullary
          val marker :
            ([< Svg_types.marker_attr ], [< Svg_types.marker_content ],
             [> Svg_types.marker ])
            star
          val color_profile :
            ([< Svg_types.colorprofile_attr ],
             [< Svg_types.colorprofile_content ],
             [> Svg_types.colorprofile ])
            star
          val linearGradient :
            ([< Svg_types.lineargradient_attr ],
             [< Svg_types.lineargradient_content ],
             [> Svg_types.lineargradient ])
            star
          val radialGradient :
            ([< Svg_types.radialgradient_attr ],
             [< Svg_types.radialgradient_content ],
             [> Svg_types.radialgradient ])
            star
          val stop :
            ([< Svg_types.stop_attr ], [< Svg_types.stop_content ],
             [> Svg_types.stop ])
            star
          val pattern :
            ([< Svg_types.pattern_attr ], [< Svg_types.pattern_content ],
             [> Svg_types.pattern ])
            star
          val clipPath :
            ([< Svg_types.clippath_attr ], [< Svg_types.clippath_content ],
             [> Svg_types.clippath ])
            star
          val filter :
            ([< Svg_types.filter_attr ], [< Svg_types.filter_content ],
             [> Svg_types.filter ])
            star
          val feDistantLight :
            ([< Svg_types.fedistantlight_attr ],
             [< Svg_types.fedistantlight_content ],
             [> Svg_types.fedistantlight ])
            star
          val fePointLight :
            ([< Svg_types.fepointlight_attr ],
             [< Svg_types.fepointlight_content ],
             [> Svg_types.fepointlight ])
            star
          val feSpotLight :
            ([< Svg_types.fespotlight_attr ],
             [< Svg_types.fespotlight_content ], [> Svg_types.fespotlight ])
            star
          val feBlend :
            ([< Svg_types.feblend_attr ], [< Svg_types.feblend_content ],
             [> Svg_types.feblend ])
            star
          val feColorMatrix :
            ([< Svg_types.fecolormatrix_attr ],
             [< Svg_types.fecolormatrix_content ],
             [> Svg_types.fecolormatrix ])
            star
          val feComponentTransfer :
            ([< Svg_types.fecomponenttransfer_attr ],
             [< Svg_types.fecomponenttransfer_content ],
             [> Svg_types.fecomponenttransfer ])
            star
          val feFuncA :
            ([< Svg_types.fefunca_attr ], [< Svg_types.fefunca_content ],
             [> Svg_types.fefunca ])
            star
          val feFuncG :
            ([< Svg_types.fefuncg_attr ], [< Svg_types.fefuncg_content ],
             [> Svg_types.fefuncg ])
            star
          val feFuncB :
            ([< Svg_types.fefuncb_attr ], [< Svg_types.fefuncb_content ],
             [> Svg_types.fefuncb ])
            star
          val feFuncR :
            ([< Svg_types.fefuncr_attr ], [< Svg_types.fefuncr_content ],
             [> Svg_types.fefuncr ])
            star
          val feComposite :
            ([< Svg_types.fecomposite_attr ],
             [< Svg_types.fecomposite_content ], [> Svg_types.fecomposite ])
            star
          val feConvolveMatrix :
            ([< Svg_types.feconvolvematrix_attr ],
             [< Svg_types.feconvolvematrix_content ],
             [> Svg_types.feconvolvematrix ])
            star
          val feDiffuseLighting :
            ([< Svg_types.fediffuselighting_attr ],
             [< Svg_types.fediffuselighting_content ],
             [> Svg_types.fediffuselighting ])
            star
          val feDisplacementMap :
            ([< Svg_types.fedisplacementmap_attr ],
             [< Svg_types.fedisplacementmap_content ],
             [> Svg_types.fedisplacementmap ])
            star
          val feFlood :
            ([< Svg_types.feflood_attr ], [< Svg_types.feflood_content ],
             [> Svg_types.feflood ])
            star
          val feGaussianBlur :
            ([< Svg_types.fegaussianblur_attr ],
             [< Svg_types.fegaussianblur_content ],
             [> Svg_types.fegaussianblur ])
            star
          val feImage :
            ([< Svg_types.feimage_attr ], [< Svg_types.feimage_content ],
             [> Svg_types.feimage ])
            star
          val feMerge :
            ([< Svg_types.femerge_attr ], [< Svg_types.femerge_content ],
             [> Svg_types.femerge ])
            star
          val feMorphology :
            ([< Svg_types.femorphology_attr ],
             [< Svg_types.femorphology_content ],
             [> Svg_types.femorphology ])
            star
          val feOffset :
            ([< Svg_types.feoffset_attr ], [< Svg_types.feoffset_content ],
             [> Svg_types.feoffset ])
            star
          val feSpecularLighting :
            ([< Svg_types.fespecularlighting_attr ],
             [< Svg_types.fespecularlighting_content ],
             [> Svg_types.fespecularlighting ])
            star
          val feTile :
            ([< Svg_types.fetile_attr ], [< Svg_types.fetile_content ],
             [> Svg_types.fetile ])
            star
          val feTurbulence :
            ([< Svg_types.feturbulence_attr ],
             [< Svg_types.feturbulence_content ],
             [> Svg_types.feturbulence ])
            star
          val cursor :
            ([< Svg_types.cursor_attr ], [< Svg_types.cursor_content ],
             [> Svg_types.cursor ])
            star
          val a :
            ([< Svg_types.a_attr ], [< Svg_types.a_content ],
             [> Svg_types.a ])
            star
          val view :
            ([< Svg_types.view_attr ], [< Svg_types.view_content ],
             [> Svg_types.view ])
            star
          val script :
            ([< Svg_types.script_attr ], [< Svg_types.script_content ],
             [> Svg_types.script ])
            unary
          val animation :
            ([< Svg_types.animation_attr ], [< Svg_types.animation_content ],
             [> Svg_types.animation ])
            star
          val set :
            ([< Svg_types.set_attr ], [< Svg_types.set_content ],
             [> Svg_types.set ])
            star
          val animateMotion :
            ([< Svg_types.animatemotion_attr ],
             [< Svg_types.animatemotion_content ],
             [> Svg_types.animatemotion ])
            star
          val mpath :
            ([< Svg_types.mpath_attr ], [< Svg_types.mpath_content ],
             [> Svg_types.mpath ])
            star
          val animateColor :
            ([< Svg_types.animatecolor_attr ],
             [< Svg_types.animatecolor_content ],
             [> Svg_types.animatecolor ])
            star
          val animateTransform :
            ([< Svg_types.animatetransform_attr ],
             [< Svg_types.animatetransform_content ],
             [> Svg_types.animatetransform ])
            star
          val font :
            ([< Svg_types.font_attr ], [< Svg_types.font_content ],
             [> Svg_types.font ])
            star
          val glyph :
            ([< Svg_types.glyph_attr ], [< Svg_types.glyph_content ],
             [> Svg_types.glyph ])
            star
          val missing_glyph :
            ([< Svg_types.missingglyph_attr ],
             [< Svg_types.missingglyph_content ],
             [> Svg_types.missingglyph ])
            star
          val hkern :
            ([< Svg_types.hkern_attr ], [> Svg_types.hkern ]) nullary
          val vkern :
            ([< Svg_types.vkern_attr ], [> Svg_types.vkern ]) nullary
          val font_face :
            ([< Svg_types.font_face_attr ], [> Svg_types.font_face ]) nullary
          val font_face_src :
            ([< Svg_types.font_face_src_attr ],
             [< Svg_types.font_face_src_content ],
             [> Svg_types.font_face_src ])
            star
          val font_face_uri :
            ([< Svg_types.font_face_uri_attr ],
             [< Svg_types.font_face_uri_content ],
             [> Svg_types.font_face_uri ])
            star
          val font_face_format :
            ([< Svg_types.font_face_format_attr ],
             [> Svg_types.font_face_format ])
            nullary
          val font_face_name :
            ([< Svg_types.font_face_name_attr ],
             [> Svg_types.font_face_name ])
            nullary
          val metadata :
            ?a:Svg_types.metadata_attr attrib list ->
            Xml.elt list_wrap -> [> Svg_types.metadata ] elt
          val foreignObject :
            ?a:Svg_types.foreignobject_attr attrib list ->
            Xml.elt list_wrap -> [> Svg_types.foreignobject ] elt
          val pcdata : string wrap -> [> Svg_types.txt ] elt
          val of_seq : Xml_stream.signal Seq.t -> 'a elt list_wrap
          val tot : Xml.elt -> 'a elt
          val totl : Xml.elt list_wrap -> 'a elt list_wrap
          val toelt : 'a elt -> Xml.elt
          val toeltl : 'a elt list_wrap -> Xml.elt list_wrap
          val doc_toelt : doc -> Xml.elt
          val to_xmlattribs : 'a attrib list -> Xml.attrib list
          val to_attrib : Xml.attrib -> 'a attrib
          module Unsafe :
            sig
              val data : string wrap -> 'a elt
              val node :
                string -> ?a:'a attrib list -> 'b elt list_wrap -> 'c elt
              val leaf : string -> ?a:'a attrib list -> unit -> 'b elt
              val coerce_elt : 'a elt -> 'b elt
              val string_attrib : string -> string wrap -> 'a attrib
              val float_attrib : string -> float wrap -> 'a attrib
              val int_attrib : string -> int wrap -> 'a attrib
              val uri_attrib : string -> uri wrap -> 'a attrib
              val space_sep_attrib : string -> string list wrap -> 'a attrib
              val comma_sep_attrib : string -> string list wrap -> 'a attrib
            end
        end
      module R :
        sig
          val node :
            'Eliom_content.Svg.elt React.signal -> 'Eliom_content.Svg.elt
          module Raw :
            sig
              type 'a elt = 'a elt
              type doc = [ `Svg ] elt
              type 'a attrib = 'a attrib
              module Xml :
                sig
                  module W :
                    sig
                      type 'a t = 'Eliom_content_core.Xml_wed.W.t
                      val return : '-> 'a t
                      type ('a, 'b) ft =
                          ('a, 'b) Eliom_content_core.Xml_wed.W.ft
                      val fmap : ('a, 'b) ft -> 'a t -> 'b t
                      type 'a tlist = 'Eliom_content_core.Xml_wed.W.tlist
                      val nil : unit -> 'a tlist
                      val singleton : 'a t -> 'a tlist
                      val cons : 'a t -> 'a tlist -> 'a tlist
                      val append : 'a tlist -> 'a tlist -> 'a tlist
                      val map : ('a, 'b) ft -> 'a tlist -> 'b tlist
                    end
                  type 'a wrap = 'W.t
                  type 'a list_wrap = 'W.tlist
                  type uri = Eliom_content_core.Xml_wed.uri
                  val string_of_uri : (uri, string) W.ft
                  val uri_of_string : (string, uri) W.ft
                  type aname = string
                  type event_handler =
                      Eliom_content_core.Xml_wed.event_handler
                  type mouse_event_handler =
                      Eliom_content_core.Xml_wed.mouse_event_handler
                  type keyboard_event_handler =
                      Eliom_content_core.Xml_wed.keyboard_event_handler
                  type touch_event_handler =
                      Eliom_content_core.Xml_wed.touch_event_handler
                  type attrib = Eliom_content_core.Xml_wed.attrib
                  val float_attrib : aname -> float wrap -> attrib
                  val int_attrib : aname -> int wrap -> attrib
                  val string_attrib : aname -> string wrap -> attrib
                  val space_sep_attrib : aname -> string list wrap -> attrib
                  val comma_sep_attrib : aname -> string list wrap -> attrib
                  val event_handler_attrib : aname -> event_handler -> attrib
                  val mouse_event_handler_attrib :
                    aname -> mouse_event_handler -> attrib
                  val keyboard_event_handler_attrib :
                    aname -> keyboard_event_handler -> attrib
                  val touch_event_handler_attrib :
                    aname -> touch_event_handler -> attrib
                  val uri_attrib : aname -> uri wrap -> attrib
                  val uris_attrib : aname -> uri list wrap -> attrib
                  type elt = Eliom_content_core.Xml_wed.elt
                  type ename = string
                  val empty : unit -> elt
                  val comment : string -> elt
                  val pcdata : string wrap -> elt
                  val encodedpcdata : string wrap -> elt
                  val entity : string -> elt
                  val leaf : ?a:attrib list -> ename -> elt
                  val node : ?a:attrib list -> ename -> elt list_wrap -> elt
                  val cdata : string -> elt
                  val cdata_script : string -> elt
                  val cdata_style : string -> elt
                end
              type 'a wrap = 'Xml.W.t
              type 'a list_wrap = 'Xml.W.tlist
              type ('a, 'b) nullary = ?a:'a attrib list -> unit -> 'b elt
              type ('a, 'b, 'c) unary =
                  ?a:'a attrib list -> 'b elt wrap -> 'c elt
              type ('a, 'b, 'c) star =
                  ?a:'a attrib list -> 'b elt list_wrap -> 'c elt
              module Info : Xml_sigs.Info
              type uri = Xml.uri
              val string_of_uri : (uri, string) Xml.W.ft
              val uri_of_string : (string, uri) Xml.W.ft
              val a_version : string wrap -> [> `Version ] attrib
              val a_baseProfile : string wrap -> [> `BaseProfile ] attrib
              val a_x : Svg_types.coord wrap -> [> `X ] attrib
              val a_y : Svg_types.coord wrap -> [> `Y ] attrib
              val a_width : Svg_types.Unit.length wrap -> [> `Width ] attrib
              val a_height :
                Svg_types.Unit.length wrap -> [> `Height ] attrib
              val a_preserveAspectRatio :
                string wrap -> [> `PreserveAspectRatio ] attrib
              val a_contentScriptType :
                string wrap -> [> `ContentScriptType ] attrib
              val a_contentStyleType :
                string wrap -> [> `ContentStyleType ] attrib
              val a_zoomAndPan :
                [< `Disable | `Magnify ] wrap -> [> `ZoomAndSpan ] attrib
              val a_href : Svg_types.iri wrap -> [> `Xlink_href ] attrib
              val a_xlink_href :
                Svg_types.iri wrap -> [> `Xlink_href ] attrib
              val a_requiredFeatures :
                Svg_types.spacestrings wrap -> [> `RequiredFeatures ] attrib
              val a_requiredExtensions :
                Svg_types.spacestrings wrap -> [> `RequiredExtension ] attrib
              val a_systemLanguage :
                Svg_types.commastrings wrap -> [> `SystemLanguage ] attrib
              val a_externalRessourcesRequired :
                bool wrap -> [> `ExternalRessourcesRequired ] attrib
              val a_id : string wrap -> [> `Id ] attrib
              val a_user_data :
                string -> string wrap -> [> `User_data ] attrib
              val a_xml_base : Svg_types.iri wrap -> [> `Xml_Base ] attrib
              val a_xml_lang : Svg_types.iri wrap -> [> `Xml_Lang ] attrib
              val a_xml_space :
                [< `Default | `Preserve ] wrap -> [> `Xml_Space ] attrib
              val a_type : string wrap -> [> `Type ] attrib
              val a_media : Svg_types.commastrings wrap -> [> `Media ] attrib
              val a_xlink_title : string wrap -> [> `Title ] attrib
              val a_class : Svg_types.spacestrings wrap -> [> `Class ] attrib
              val a_style : string wrap -> [> `Style ] attrib
              val a_transform :
                Svg_types.transforms wrap -> [> `Transform ] attrib
              val a_viewBox :
                Svg_types.fourfloats wrap -> [> `ViewBox ] attrib
              val a_d : string wrap -> [> `D ] attrib
              val a_pathLength : float wrap -> [> `PathLength ] attrib
              val a_rx : Svg_types.Unit.length wrap -> [> `Rx ] attrib
              val a_ry : Svg_types.Unit.length wrap -> [> `Ry ] attrib
              val a_cx : Svg_types.Unit.length wrap -> [> `Cx ] attrib
              val a_cy : Svg_types.Unit.length wrap -> [> `Cy ] attrib
              val a_r : Svg_types.Unit.length wrap -> [> `R ] attrib
              val a_x1 : Svg_types.coord wrap -> [> `X1 ] attrib
              val a_y1 : Svg_types.coord wrap -> [> `Y1 ] attrib
              val a_x2 : Svg_types.coord wrap -> [> `X2 ] attrib
              val a_y2 : Svg_types.coord wrap -> [> `Y2 ] attrib
              val a_points : Svg_types.coords wrap -> [> `Points ] attrib
              val a_x_list : Svg_types.lengths wrap -> [> `X_list ] attrib
              val a_y_list : Svg_types.lengths wrap -> [> `Y_list ] attrib
              val a_dx : Svg_types.number wrap -> [> `Dx ] attrib
              val a_dy : Svg_types.number wrap -> [> `Dy ] attrib
              val a_dx_list : Svg_types.lengths wrap -> [> `Dx_list ] attrib
              val a_dy_list : Svg_types.lengths wrap -> [> `Dy_list ] attrib
              val a_lengthAdjust :
                [< `Spacing | `SpacingAndGlyphs ] wrap ->
                [> `LengthAdjust ] attrib
              val a_textLength :
                Svg_types.Unit.length wrap -> [> `TextLength ] attrib
              val a_text_anchor :
                [< `End | `Inherit | `Middle | `Start ] wrap ->
                [> `Text_Anchor ] attrib
              val a_text_decoration :
                [< `Blink
                 | `Inherit
                 | `Line_through
                 | `None
                 | `Overline
                 | `Underline ]
                wrap -> [> `Text_Decoration ] attrib
              val a_text_rendering :
                [< `Auto
                 | `GeometricPrecision
                 | `Inherit
                 | `OptimizeLegibility
                 | `OptimizeSpeed ]
                wrap -> [> `Text_Rendering ] attrib
              val a_rotate : Svg_types.numbers wrap -> [> `Rotate ] attrib
              val a_startOffset :
                Svg_types.Unit.length wrap -> [> `StartOffset ] attrib
              val a_method :
                [< `Align | `Stretch ] wrap -> [> `Method ] attrib
              val a_spacing :
                [< `Auto | `Exact ] wrap -> [> `Spacing ] attrib
              val a_glyphRef : string wrap -> [> `GlyphRef ] attrib
              val a_format : string wrap -> [> `Format ] attrib
              val a_markerUnits :
                [< `StrokeWidth | `UserSpaceOnUse ] wrap ->
                [> `MarkerUnits ] attrib
              val a_refX : Svg_types.coord wrap -> [> `RefX ] attrib
              val a_refY : Svg_types.coord wrap -> [> `RefY ] attrib
              val a_markerWidth :
                Svg_types.Unit.length wrap -> [> `MarkerWidth ] attrib
              val a_markerHeight :
                Svg_types.Unit.length wrap -> [> `MarkerHeight ] attrib
              val a_orient :
                Svg_types.Unit.angle option wrap -> [> `Orient ] attrib
              val a_local : string wrap -> [> `Local ] attrib
              val a_rendering_intent :
                [< `Absolute_colorimetric
                 | `Auto
                 | `Perceptual
                 | `Relative_colorimetric
                 | `Saturation ]
                wrap -> [> `Rendering_Indent ] attrib
              val a_gradientUnits :
                [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
                [ `GradientUnits ] attrib
              val a_gradientTransform :
                Svg_types.transforms wrap -> [> `Gradient_Transform ] attrib
              val a_spreadMethod :
                [< `Pad | `Reflect | `Repeat ] wrap ->
                [> `SpreadMethod ] attrib
              val a_fx : Svg_types.coord wrap -> [> `Fx ] attrib
              val a_fy : Svg_types.coord wrap -> [> `Fy ] attrib
              val a_offset :
                [< `Number of Svg_types.number
                 | `Percentage of Svg_types.percentage ]
                wrap -> [> `Offset ] attrib
              val a_patternUnits :
                [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
                [> `PatternUnits ] attrib
              val a_patternContentUnits :
                [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
                [> `PatternContentUnits ] attrib
              val a_patternTransform :
                Svg_types.transforms wrap -> [> `PatternTransform ] attrib
              val a_clipPathUnits :
                [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
                [> `ClipPathUnits ] attrib
              val a_maskUnits :
                [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
                [> `MaskUnits ] attrib
              val a_maskContentUnits :
                [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
                [> `MaskContentUnits ] attrib
              val a_primitiveUnits :
                [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
                [> `PrimitiveUnits ] attrib
              val a_filterRes :
                Svg_types.number_optional_number wrap ->
                [> `FilterResUnits ] attrib
              val a_result : string wrap -> [> `Result ] attrib
              val a_in :
                [< `BackgroundAlpha
                 | `BackgroundImage
                 | `FillPaint
                 | `Ref of string
                 | `SourceAlpha
                 | `SourceGraphic
                 | `StrokePaint ]
                wrap -> [> `In ] attrib
              val a_in2 :
                [< `BackgroundAlpha
                 | `BackgroundImage
                 | `FillPaint
                 | `Ref of string
                 | `SourceAlpha
                 | `SourceGraphic
                 | `StrokePaint ]
                wrap -> [> `In2 ] attrib
              val a_azimuth : float wrap -> [> `Azimuth ] attrib
              val a_elevation : float wrap -> [> `Elevation ] attrib
              val a_pointsAtX : float wrap -> [> `PointsAtX ] attrib
              val a_pointsAtY : float wrap -> [> `PointsAtY ] attrib
              val a_pointsAtZ : float wrap -> [> `PointsAtZ ] attrib
              val a_specularExponent :
                float wrap -> [> `SpecularExponent ] attrib
              val a_specularConstant :
                float wrap -> [> `SpecularConstant ] attrib
              val a_limitingConeAngle :
                float wrap -> [> `LimitingConeAngle ] attrib
              val a_mode :
                [< `Darken | `Lighten | `Multiply | `Normal | `Screen ] wrap ->
                [> `Mode ] attrib
              val a_feColorMatrix_type :
                [< `HueRotate | `LuminanceToAlpha | `Matrix | `Saturate ]
                wrap -> [> `Typefecolor ] attrib
              val a_values : Svg_types.numbers wrap -> [> `Values ] attrib
              val a_transfer_type :
                [< `Discrete | `Gamma | `Identity | `Linear | `Table ] wrap ->
                [> `Type_transfert ] attrib
              val a_tableValues :
                Svg_types.numbers wrap -> [> `TableValues ] attrib
              val a_intercept :
                Svg_types.number wrap -> [> `Intercept ] attrib
              val a_amplitude :
                Svg_types.number wrap -> [> `Amplitude ] attrib
              val a_exponent : Svg_types.number wrap -> [> `Exponent ] attrib
              val a_transfer_offset :
                Svg_types.number wrap -> [> `Offset_transfer ] attrib
              val a_feComposite_operator :
                [< `Arithmetic | `Atop | `In | `Out | `Over | `Xor ] wrap ->
                [> `OperatorComposite ] attrib
              val a_k1 : Svg_types.number wrap -> [> `K1 ] attrib
              val a_k2 : Svg_types.number wrap -> [> `K2 ] attrib
              val a_k3 : Svg_types.number wrap -> [> `K3 ] attrib
              val a_k4 : Svg_types.number wrap -> [> `K4 ] attrib
              val a_order :
                Svg_types.number_optional_number wrap -> [> `Order ] attrib
              val a_kernelMatrix :
                Svg_types.numbers wrap -> [> `KernelMatrix ] attrib
              val a_divisor : Svg_types.number wrap -> [> `Divisor ] attrib
              val a_bias : Svg_types.number wrap -> [> `Bias ] attrib
              val a_kernelUnitLength :
                Svg_types.number_optional_number wrap ->
                [> `KernelUnitLength ] attrib
              val a_targetX : int wrap -> [> `TargetX ] attrib
              val a_targetY : int wrap -> [> `TargetY ] attrib
              val a_edgeMode :
                [< `Duplicate | `None | `Wrap ] wrap -> [> `TargetY ] attrib
              val a_preserveAlpha : bool wrap -> [> `TargetY ] attrib
              val a_surfaceScale :
                Svg_types.number wrap -> [> `SurfaceScale ] attrib
              val a_diffuseConstant :
                Svg_types.number wrap -> [> `DiffuseConstant ] attrib
              val a_scale : Svg_types.number wrap -> [> `Scale ] attrib
              val a_xChannelSelector :
                [< `A | `B | `G | `R ] wrap -> [> `XChannelSelector ] attrib
              val a_yChannelSelector :
                [< `A | `B | `G | `R ] wrap -> [> `YChannelSelector ] attrib
              val a_stdDeviation :
                Svg_types.number_optional_number wrap ->
                [> `StdDeviation ] attrib
              val a_feMorphology_operator :
                [< `Dilate | `Erode ] wrap -> [> `OperatorMorphology ] attrib
              val a_radius :
                Svg_types.number_optional_number wrap -> [> `Radius ] attrib
              val a_baseFrenquency :
                Svg_types.number_optional_number wrap ->
                [> `BaseFrequency ] attrib
              val a_numOctaves : int wrap -> [> `NumOctaves ] attrib
              val a_seed : Svg_types.number wrap -> [> `Seed ] attrib
              val a_stitchTiles :
                [< `NoStitch | `Stitch ] wrap -> [> `StitchTiles ] attrib
              val a_feTurbulence_type :
                [< `FractalNoise | `Turbulence ] wrap ->
                [> `TypeStitch ] attrib
              val a_xlink_show :
                [< `New | `Replace ] wrap -> [> `Xlink_show ] attrib
              val a_xlink_actuate :
                [< `None | `OnLoad | `OnRequest | `Other ] wrap ->
                [> `Xlink_actuate ] attrib
              val a_target : string wrap -> [> `Xlink_target ] attrib
              val a_viewTarget : string wrap -> [> `ViewTarget ] attrib
              val a_attributeName : string wrap -> [> `AttributeName ] attrib
              val a_attributeType :
                [< `Auto | `CSS | `XML ] wrap -> [> `AttributeType ] attrib
              val a_begin : string wrap -> [> `Begin ] attrib
              val a_dur : string wrap -> [> `Dur ] attrib
              val a_min : string wrap -> [> `Min ] attrib
              val a_max : string wrap -> [> `Max ] attrib
              val a_restart :
                [< `Always | `Never | `WhenNotActive ] wrap ->
                [> `Restart ] attrib
              val a_repeatCount : string wrap -> [> `RepeatCount ] attrib
              val a_repeatDur : string wrap -> [> `RepeatDur ] attrib
              val a_fill : Svg_types.paint wrap -> [> `Fill ] attrib
              val a_animation_fill :
                [< `Freeze | `Remove ] wrap -> [> `Fill_Animation ] attrib
              val a_calcMode :
                [< `Discrete | `Linear | `Paced | `Spline ] wrap ->
                [> `CalcMode ] attrib
              val a_animation_values :
                Svg_types.strings wrap -> [> `Valuesanim ] attrib
              val a_keyTimes :
                Svg_types.strings wrap -> [> `KeyTimes ] attrib
              val a_keySplines :
                Svg_types.strings wrap -> [> `KeySplines ] attrib
              val a_from : string wrap -> [> `From ] attrib
              val a_to : string wrap -> [> `To ] attrib
              val a_by : string wrap -> [> `By ] attrib
              val a_additive :
                [< `Replace | `Sum ] wrap -> [> `Additive ] attrib
              val a_accumulate :
                [< `None | `Sum ] wrap -> [> `Accumulate ] attrib
              val a_keyPoints :
                Svg_types.numbers_semicolon wrap -> [> `KeyPoints ] attrib
              val a_path : string wrap -> [> `Path ] attrib
              val a_animateTransform_type :
                [ `Rotate | `Scale | `SkewX | `SkewY | `Translate ] wrap ->
                [ `Typeanimatetransform ] attrib
              val a_horiz_origin_x :
                Svg_types.number wrap -> [> `HorizOriginX ] attrib
              val a_horiz_origin_y :
                Svg_types.number wrap -> [> `HorizOriginY ] attrib
              val a_horiz_adv_x :
                Svg_types.number wrap -> [> `HorizAdvX ] attrib
              val a_vert_origin_x :
                Svg_types.number wrap -> [> `VertOriginX ] attrib
              val a_vert_origin_y :
                Svg_types.number wrap -> [> `VertOriginY ] attrib
              val a_vert_adv_y :
                Svg_types.number wrap -> [> `VertAdvY ] attrib
              val a_unicode : string wrap -> [> `Unicode ] attrib
              val a_glyph_name : string wrap -> [> `glyphname ] attrib
              val a_orientation :
                [< `H | `V ] wrap -> [> `Orientation ] attrib
              val a_arabic_form :
                [< `Initial | `Isolated | `Medial | `Terminal ] wrap ->
                [> `Arabicform ] attrib
              val a_lang : string wrap -> [> `Lang ] attrib
              val a_u1 : string wrap -> [> `U1 ] attrib
              val a_u2 : string wrap -> [> `U2 ] attrib
              val a_g1 : string wrap -> [> `G1 ] attrib
              val a_g2 : string wrap -> [> `G2 ] attrib
              val a_k : string wrap -> [> `K ] attrib
              val a_font_family : string wrap -> [> `Font_Family ] attrib
              val a_font_style : string wrap -> [> `Font_Style ] attrib
              val a_font_variant : string wrap -> [> `Font_Variant ] attrib
              val a_font_weight : string wrap -> [> `Font_Weight ] attrib
              val a_font_stretch : string wrap -> [> `Font_Stretch ] attrib
              val a_font_size : string wrap -> [> `Font_Size ] attrib
              val a_unicode_range : string wrap -> [> `UnicodeRange ] attrib
              val a_units_per_em : string wrap -> [> `UnitsPerEm ] attrib
              val a_stemv : Svg_types.number wrap -> [> `Stemv ] attrib
              val a_stemh : Svg_types.number wrap -> [> `Stemh ] attrib
              val a_slope : Svg_types.number wrap -> [> `Slope ] attrib
              val a_cap_height :
                Svg_types.number wrap -> [> `CapHeight ] attrib
              val a_x_height : Svg_types.number wrap -> [> `XHeight ] attrib
              val a_accent_height :
                Svg_types.number wrap -> [> `AccentHeight ] attrib
              val a_ascent : Svg_types.number wrap -> [> `Ascent ] attrib
              val a_widths : string wrap -> [> `Widths ] attrib
              val a_bbox : string wrap -> [> `Bbox ] attrib
              val a_ideographic :
                Svg_types.number wrap -> [> `Ideographic ] attrib
              val a_alphabetic :
                Svg_types.number wrap -> [> `Alphabetic ] attrib
              val a_mathematical :
                Svg_types.number wrap -> [> `Mathematical ] attrib
              val a_hanging : Svg_types.number wrap -> [> `Hanging ] attrib
              val a_videographic :
                Svg_types.number wrap -> [> `VIdeographic ] attrib
              val a_v_alphabetic :
                Svg_types.number wrap -> [> `VAlphabetic ] attrib
              val a_v_mathematical :
                Svg_types.number wrap -> [> `VMathematical ] attrib
              val a_v_hanging :
                Svg_types.number wrap -> [> `VHanging ] attrib
              val a_underline_position :
                Svg_types.number wrap -> [> `UnderlinePosition ] attrib
              val a_underline_thickness :
                Svg_types.number wrap -> [> `UnderlineThickness ] attrib
              val a_strikethrough_position :
                Svg_types.number wrap -> [> `StrikethroughPosition ] attrib
              val a_strikethrough_thickness :
                Svg_types.number wrap -> [> `StrikethroughThickness ] attrib
              val a_overline_position :
                Svg_types.number wrap -> [> `OverlinePosition ] attrib
              val a_overline_thickness :
                Svg_types.number wrap -> [> `OverlineThickness ] attrib
              val a_string : string wrap -> [> `String ] attrib
              val a_name : string wrap -> [> `Name ] attrib
              val a_alignment_baseline :
                [< `After_edge
                 | `Alphabetic
                 | `Auto
                 | `Baseline
                 | `Before_edge
                 | `Central
                 | `Hanging
                 | `Ideographic
                 | `Inherit
                 | `Mathematical
                 | `Middle
                 | `Text_after_edge
                 | `Text_before_edge ]
                wrap -> [> `Alignment_Baseline ] attrib
              val a_dominant_baseline :
                [< `Alphabetic
                 | `Auto
                 | `Central
                 | `Hanging
                 | `Ideographic
                 | `Inherit
                 | `Mathematical
                 | `Middle
                 | `No_change
                 | `Reset_size
                 | `Text_after_edge
                 | `Text_before_edge
                 | `Use_script ]
                wrap -> [> `Dominant_Baseline ] attrib
              val a_stop_color :
                Svg_types.color wrap -> [> `Stop_Color ] attrib
              val a_stop_opacity :
                Svg_types.number wrap -> [> `Stop_Opacity ] attrib
              val a_stroke : Svg_types.paint wrap -> [> `Stroke ] attrib
              val a_stroke_width :
                Svg_types.Unit.length wrap -> [> `Stroke_Width ] attrib
              val a_stroke_linecap :
                [< `Butt | `Round | `Square ] wrap ->
                [> `Stroke_Linecap ] attrib
              val a_stroke_linejoin :
                [< `Bever | `Miter | `Round ] wrap ->
                [> `Stroke_Linejoin ] attrib
              val a_stroke_miterlimit :
                float wrap -> [> `Stroke_Miterlimit ] attrib
              val a_stroke_dasharray :
                Svg_types.Unit.length list wrap ->
                [> `Stroke_Dasharray ] attrib
              val a_stroke_dashoffset :
                Svg_types.Unit.length wrap -> [> `Stroke_Dashoffset ] attrib
              val a_stroke_opacity :
                float wrap -> [> `Stroke_Opacity ] attrib
              val a_onabort : Xml.event_handler -> [> `OnAbort ] attrib
              val a_onactivate : Xml.event_handler -> [> `OnActivate ] attrib
              val a_onbegin : Xml.event_handler -> [> `OnBegin ] attrib
              val a_onend : Xml.event_handler -> [> `OnEnd ] attrib
              val a_onerror : Xml.event_handler -> [> `OnError ] attrib
              val a_onfocusin : Xml.event_handler -> [> `OnFocusIn ] attrib
              val a_onfocusout : Xml.event_handler -> [> `OnFocusOut ] attrib
              val a_onload : Xml.event_handler -> [> `OnLoad ] attrib
              val a_onrepeat : Xml.event_handler -> [> `OnRepeat ] attrib
              val a_onresize : Xml.event_handler -> [> `OnResize ] attrib
              val a_onscroll : Xml.event_handler -> [> `OnScroll ] attrib
              val a_onunload : Xml.event_handler -> [> `OnUnload ] attrib
              val a_onzoom : Xml.event_handler -> [> `OnZoom ] attrib
              val a_onclick : Xml.mouse_event_handler -> [> `OnClick ] attrib
              val a_onmousedown :
                Xml.mouse_event_handler -> [> `OnMouseDown ] attrib
              val a_onmouseup :
                Xml.mouse_event_handler -> [> `OnMouseUp ] attrib
              val a_onmouseover :
                Xml.mouse_event_handler -> [> `OnMouseOver ] attrib
              val a_onmouseout :
                Xml.mouse_event_handler -> [> `OnMouseOut ] attrib
              val a_onmousemove :
                Xml.mouse_event_handler -> [> `OnMouseMove ] attrib
              val a_ontouchstart :
                Xml.touch_event_handler -> [> `OnTouchStart ] attrib
              val a_ontouchend :
                Xml.touch_event_handler -> [> `OnTouchEnd ] attrib
              val a_ontouchmove :
                Xml.touch_event_handler -> [> `OnTouchMove ] attrib
              val a_ontouchcancel :
                Xml.touch_event_handler -> [> `OnTouchCancel ] attrib
              val txt : string wrap -> [> Svg_types.txt ] elt
              val svg :
                ([< Svg_types.svg_attr ], [< Svg_types.svg_content ],
                 [> Svg_types.svg ])
                star
              val g :
                ([< Svg_types.g_attr ], [< Svg_types.g_content ],
                 [> Svg_types.g ])
                star
              val defs :
                ([< Svg_types.defs_attr ], [< Svg_types.defs_content ],
                 [> Svg_types.defs ])
                star
              val desc :
                ([< Svg_types.desc_attr ], [< Svg_types.desc_content ],
                 [> Svg_types.desc ])
                unary
              val title :
                ([< Svg_types.title_attr ], [< Svg_types.title_content ],
                 [> Svg_types.title ])
                unary
              val symbol :
                ([< Svg_types.symbol_attr ], [< Svg_types.symbol_content ],
                 [> Svg_types.symbol ])
                star
              val use :
                ([< Svg_types.use_attr ], [< Svg_types.use_content ],
                 [> Svg_types.use ])
                star
              val image :
                ([< Svg_types.image_attr ], [< Svg_types.image_content ],
                 [> Svg_types.image ])
                star
              val switch :
                ([< Svg_types.switch_attr ], [< Svg_types.switch_content ],
                 [> Svg_types.switch ])
                star
              val style :
                ([< Svg_types.style_attr ], [< Svg_types.style_content ],
                 [> Svg_types.style ])
                unary
              val path :
                ([< Svg_types.path_attr ], [< Svg_types.path_content ],
                 [> Svg_types.path ])
                star
              val rect :
                ([< Svg_types.rect_attr ], [< Svg_types.rect_content ],
                 [> Svg_types.rect ])
                star
              val circle :
                ([< Svg_types.circle_attr ], [< Svg_types.circle_content ],
                 [> Svg_types.circle ])
                star
              val ellipse :
                ([< Svg_types.ellipse_attr ], [< Svg_types.ellipse_content ],
                 [> Svg_types.ellipse ])
                star
              val line :
                ([< Svg_types.line_attr ], [< Svg_types.line_content ],
                 [> Svg_types.line ])
                star
              val polyline :
                ([< Svg_types.polyline_attr ],
                 [< Svg_types.polyline_content ], [> Svg_types.polyline ])
                star
              val polygon :
                ([< Svg_types.polygon_attr ], [< Svg_types.polygon_content ],
                 [> Svg_types.polygon ])
                star
              val text :
                ([< Svg_types.text_attr ], [< Svg_types.text_content ],
                 [> Svg_types.text ])
                star
              val tspan :
                ([< Svg_types.tspan_attr ], [< Svg_types.tspan_content ],
                 [> Svg_types.tspan ])
                star
              val tref :
                ([< Svg_types.tref_attr ], [< Svg_types.tref_content ],
                 [> Svg_types.tref ])
                star
              val textPath :
                ([< Svg_types.textpath_attr ],
                 [< Svg_types.textpath_content ], [> Svg_types.textpath ])
                star
              val altGlyph :
                ([< Svg_types.altglyph_attr ],
                 [< Svg_types.altglyph_content ], [> Svg_types.altglyph ])
                unary
              type altglyphdef_content =
                  [ `Item of Svg_types.altglyphitem elt list
                  | `Ref of Svg_types.glyphref elt list ]
              val altGlyphDef :
                ([< Svg_types.altglyphdef_attr ], [< altglyphdef_content ],
                 [> Svg_types.altglyphdef ])
                unary
              val altGlyphItem :
                ([< Svg_types.altglyphitem_attr ],
                 [< Svg_types.altglyphitem_content ],
                 [> Svg_types.altglyphitem ])
                star
              val glyphRef :
                ([< Svg_types.glyphref_attr ], [> Svg_types.glyphref ])
                nullary
              val marker :
                ([< Svg_types.marker_attr ], [< Svg_types.marker_content ],
                 [> Svg_types.marker ])
                star
              val color_profile :
                ([< Svg_types.colorprofile_attr ],
                 [< Svg_types.colorprofile_content ],
                 [> Svg_types.colorprofile ])
                star
              val linearGradient :
                ([< Svg_types.lineargradient_attr ],
                 [< Svg_types.lineargradient_content ],
                 [> Svg_types.lineargradient ])
                star
              val radialGradient :
                ([< Svg_types.radialgradient_attr ],
                 [< Svg_types.radialgradient_content ],
                 [> Svg_types.radialgradient ])
                star
              val stop :
                ([< Svg_types.stop_attr ], [< Svg_types.stop_content ],
                 [> Svg_types.stop ])
                star
              val pattern :
                ([< Svg_types.pattern_attr ], [< Svg_types.pattern_content ],
                 [> Svg_types.pattern ])
                star
              val clipPath :
                ([< Svg_types.clippath_attr ],
                 [< Svg_types.clippath_content ], [> Svg_types.clippath ])
                star
              val filter :
                ([< Svg_types.filter_attr ], [< Svg_types.filter_content ],
                 [> Svg_types.filter ])
                star
              val feDistantLight :
                ([< Svg_types.fedistantlight_attr ],
                 [< Svg_types.fedistantlight_content ],
                 [> Svg_types.fedistantlight ])
                star
              val fePointLight :
                ([< Svg_types.fepointlight_attr ],
                 [< Svg_types.fepointlight_content ],
                 [> Svg_types.fepointlight ])
                star
              val feSpotLight :
                ([< Svg_types.fespotlight_attr ],
                 [< Svg_types.fespotlight_content ],
                 [> Svg_types.fespotlight ])
                star
              val feBlend :
                ([< Svg_types.feblend_attr ], [< Svg_types.feblend_content ],
                 [> Svg_types.feblend ])
                star
              val feColorMatrix :
                ([< Svg_types.fecolormatrix_attr ],
                 [< Svg_types.fecolormatrix_content ],
                 [> Svg_types.fecolormatrix ])
                star
              val feComponentTransfer :
                ([< Svg_types.fecomponenttransfer_attr ],
                 [< Svg_types.fecomponenttransfer_content ],
                 [> Svg_types.fecomponenttransfer ])
                star
              val feFuncA :
                ([< Svg_types.fefunca_attr ], [< Svg_types.fefunca_content ],
                 [> Svg_types.fefunca ])
                star
              val feFuncG :
                ([< Svg_types.fefuncg_attr ], [< Svg_types.fefuncg_content ],
                 [> Svg_types.fefuncg ])
                star
              val feFuncB :
                ([< Svg_types.fefuncb_attr ], [< Svg_types.fefuncb_content ],
                 [> Svg_types.fefuncb ])
                star
              val feFuncR :
                ([< Svg_types.fefuncr_attr ], [< Svg_types.fefuncr_content ],
                 [> Svg_types.fefuncr ])
                star
              val feComposite :
                ([< Svg_types.fecomposite_attr ],
                 [< Svg_types.fecomposite_content ],
                 [> Svg_types.fecomposite ])
                star
              val feConvolveMatrix :
                ([< Svg_types.feconvolvematrix_attr ],
                 [< Svg_types.feconvolvematrix_content ],
                 [> Svg_types.feconvolvematrix ])
                star
              val feDiffuseLighting :
                ([< Svg_types.fediffuselighting_attr ],
                 [< Svg_types.fediffuselighting_content ],
                 [> Svg_types.fediffuselighting ])
                star
              val feDisplacementMap :
                ([< Svg_types.fedisplacementmap_attr ],
                 [< Svg_types.fedisplacementmap_content ],
                 [> Svg_types.fedisplacementmap ])
                star
              val feFlood :
                ([< Svg_types.feflood_attr ], [< Svg_types.feflood_content ],
                 [> Svg_types.feflood ])
                star
              val feGaussianBlur :
                ([< Svg_types.fegaussianblur_attr ],
                 [< Svg_types.fegaussianblur_content ],
                 [> Svg_types.fegaussianblur ])
                star
              val feImage :
                ([< Svg_types.feimage_attr ], [< Svg_types.feimage_content ],
                 [> Svg_types.feimage ])
                star
              val feMerge :
                ([< Svg_types.femerge_attr ], [< Svg_types.femerge_content ],
                 [> Svg_types.femerge ])
                star
              val feMorphology :
                ([< Svg_types.femorphology_attr ],
                 [< Svg_types.femorphology_content ],
                 [> Svg_types.femorphology ])
                star
              val feOffset :
                ([< Svg_types.feoffset_attr ],
                 [< Svg_types.feoffset_content ], [> Svg_types.feoffset ])
                star
              val feSpecularLighting :
                ([< Svg_types.fespecularlighting_attr ],
                 [< Svg_types.fespecularlighting_content ],
                 [> Svg_types.fespecularlighting ])
                star
              val feTile :
                ([< Svg_types.fetile_attr ], [< Svg_types.fetile_content ],
                 [> Svg_types.fetile ])
                star
              val feTurbulence :
                ([< Svg_types.feturbulence_attr ],
                 [< Svg_types.feturbulence_content ],
                 [> Svg_types.feturbulence ])
                star
              val cursor :
                ([< Svg_types.cursor_attr ], [< Svg_types.cursor_content ],
                 [> Svg_types.cursor ])
                star
              val a :
                ([< Svg_types.a_attr ], [< Svg_types.a_content ],
                 [> Svg_types.a ])
                star
              val view :
                ([< Svg_types.view_attr ], [< Svg_types.view_content ],
                 [> Svg_types.view ])
                star
              val script :
                ([< Svg_types.script_attr ], [< Svg_types.script_content ],
                 [> Svg_types.script ])
                unary
              val animation :
                ([< Svg_types.animation_attr ],
                 [< Svg_types.animation_content ], [> Svg_types.animation ])
                star
              val set :
                ([< Svg_types.set_attr ], [< Svg_types.set_content ],
                 [> Svg_types.set ])
                star
              val animateMotion :
                ([< Svg_types.animatemotion_attr ],
                 [< Svg_types.animatemotion_content ],
                 [> Svg_types.animatemotion ])
                star
              val mpath :
                ([< Svg_types.mpath_attr ], [< Svg_types.mpath_content ],
                 [> Svg_types.mpath ])
                star
              val animateColor :
                ([< Svg_types.animatecolor_attr ],
                 [< Svg_types.animatecolor_content ],
                 [> Svg_types.animatecolor ])
                star
              val animateTransform :
                ([< Svg_types.animatetransform_attr ],
                 [< Svg_types.animatetransform_content ],
                 [> Svg_types.animatetransform ])
                star
              val font :
                ([< Svg_types.font_attr ], [< Svg_types.font_content ],
                 [> Svg_types.font ])
                star
              val glyph :
                ([< Svg_types.glyph_attr ], [< Svg_types.glyph_content ],
                 [> Svg_types.glyph ])
                star
              val missing_glyph :
                ([< Svg_types.missingglyph_attr ],
                 [< Svg_types.missingglyph_content ],
                 [> Svg_types.missingglyph ])
                star
              val hkern :
                ([< Svg_types.hkern_attr ], [> Svg_types.hkern ]) nullary
              val vkern :
                ([< Svg_types.vkern_attr ], [> Svg_types.vkern ]) nullary
              val font_face :
                ([< Svg_types.font_face_attr ], [> Svg_types.font_face ])
                nullary
              val font_face_src :
                ([< Svg_types.font_face_src_attr ],
                 [< Svg_types.font_face_src_content ],
                 [> Svg_types.font_face_src ])
                star
              val font_face_uri :
                ([< Svg_types.font_face_uri_attr ],
                 [< Svg_types.font_face_uri_content ],
                 [> Svg_types.font_face_uri ])
                star
              val font_face_format :
                ([< Svg_types.font_face_format_attr ],
                 [> Svg_types.font_face_format ])
                nullary
              val font_face_name :
                ([< Svg_types.font_face_name_attr ],
                 [> Svg_types.font_face_name ])
                nullary
              val metadata :
                ?a:Svg_types.metadata_attr attrib list ->
                Xml.elt list_wrap -> [> Svg_types.metadata ] elt
              val foreignObject :
                ?a:Svg_types.foreignobject_attr attrib list ->
                Xml.elt list_wrap -> [> Svg_types.foreignobject ] elt
              val pcdata : string wrap -> [> Svg_types.txt ] elt
              val of_seq : Xml_stream.signal Seq.t -> 'a elt list_wrap
              val tot : Xml.elt -> 'a elt
              val totl : Xml.elt list_wrap -> 'a elt list_wrap
              val toelt : 'a elt -> Xml.elt
              val toeltl : 'a elt list_wrap -> Xml.elt list_wrap
              val doc_toelt : doc -> Xml.elt
              val to_xmlattribs : 'a attrib list -> Xml.attrib list
              val to_attrib : Xml.attrib -> 'a attrib
              module Unsafe :
                sig
                  val data : string wrap -> 'a elt
                  val node :
                    string -> ?a:'a attrib list -> 'b elt list_wrap -> 'c elt
                  val leaf : string -> ?a:'a attrib list -> unit -> 'b elt
                  val coerce_elt : 'a elt -> 'b elt
                  val string_attrib : string -> string wrap -> 'a attrib
                  val float_attrib : string -> float wrap -> 'a attrib
                  val int_attrib : string -> int wrap -> 'a attrib
                  val uri_attrib : string -> uri wrap -> 'a attrib
                  val space_sep_attrib :
                    string -> string list wrap -> 'a attrib
                  val comma_sep_attrib :
                    string -> string list wrap -> 'a attrib
                end
            end
          type 'a elt = 'a elt
          type doc = [ `Svg ] elt
          type 'a attrib = 'a attrib
          module Xml :
            sig
              module W :
                sig
                  type 'a t = 'Eliom_content_core.Xml_wed.W.t
                  val return : '-> 'a t
                  type ('a, 'b) ft = ('a, 'b) Eliom_content_core.Xml_wed.W.ft
                  val fmap : ('a, 'b) ft -> 'a t -> 'b t
                  type 'a tlist = 'Eliom_content_core.Xml_wed.W.tlist
                  val nil : unit -> 'a tlist
                  val singleton : 'a t -> 'a tlist
                  val cons : 'a t -> 'a tlist -> 'a tlist
                  val append : 'a tlist -> 'a tlist -> 'a tlist
                  val map : ('a, 'b) ft -> 'a tlist -> 'b tlist
                end
              type 'a wrap = 'W.t
              type 'a list_wrap = 'W.tlist
              type uri = Eliom_content_core.Xml_wed.uri
              val string_of_uri : (uri, string) W.ft
              val uri_of_string : (string, uri) W.ft
              type aname = string
              type event_handler = Eliom_content_core.Xml_wed.event_handler
              type mouse_event_handler =
                  Eliom_content_core.Xml_wed.mouse_event_handler
              type keyboard_event_handler =
                  Eliom_content_core.Xml_wed.keyboard_event_handler
              type touch_event_handler =
                  Eliom_content_core.Xml_wed.touch_event_handler
              type attrib = Eliom_content_core.Xml_wed.attrib
              val float_attrib : aname -> float wrap -> attrib
              val int_attrib : aname -> int wrap -> attrib
              val string_attrib : aname -> string wrap -> attrib
              val space_sep_attrib : aname -> string list wrap -> attrib
              val comma_sep_attrib : aname -> string list wrap -> attrib
              val event_handler_attrib : aname -> event_handler -> attrib
              val mouse_event_handler_attrib :
                aname -> mouse_event_handler -> attrib
              val keyboard_event_handler_attrib :
                aname -> keyboard_event_handler -> attrib
              val touch_event_handler_attrib :
                aname -> touch_event_handler -> attrib
              val uri_attrib : aname -> uri wrap -> attrib
              val uris_attrib : aname -> uri list wrap -> attrib
              type elt = Eliom_content_core.Xml_wed.elt
              type ename = string
              val empty : unit -> elt
              val comment : string -> elt
              val pcdata : string wrap -> elt
              val encodedpcdata : string wrap -> elt
              val entity : string -> elt
              val leaf : ?a:attrib list -> ename -> elt
              val node : ?a:attrib list -> ename -> elt list_wrap -> elt
              val cdata : string -> elt
              val cdata_script : string -> elt
              val cdata_style : string -> elt
            end
          type 'a wrap = 'Xml.W.t
          type 'a list_wrap = 'Xml.W.tlist
          type ('a, 'b) nullary = ?a:'a attrib list -> unit -> 'b elt
          type ('a, 'b, 'c) unary =
              ?a:'a attrib list -> 'b elt wrap -> 'c elt
          type ('a, 'b, 'c) star =
              ?a:'a attrib list -> 'b elt list_wrap -> 'c elt
          module Info : Xml_sigs.Info
          type uri = Xml.uri
          val string_of_uri : (uri, string) Xml.W.ft
          val uri_of_string : (string, uri) Xml.W.ft
          val a_version : string wrap -> [> `Version ] attrib
          val a_baseProfile : string wrap -> [> `BaseProfile ] attrib
          val a_x : Svg_types.coord wrap -> [> `X ] attrib
          val a_y : Svg_types.coord wrap -> [> `Y ] attrib
          val a_width : Svg_types.Unit.length wrap -> [> `Width ] attrib
          val a_height : Svg_types.Unit.length wrap -> [> `Height ] attrib
          val a_preserveAspectRatio :
            string wrap -> [> `PreserveAspectRatio ] attrib
          val a_contentScriptType :
            string wrap -> [> `ContentScriptType ] attrib
          val a_contentStyleType :
            string wrap -> [> `ContentStyleType ] attrib
          val a_zoomAndPan :
            [< `Disable | `Magnify ] wrap -> [> `ZoomAndSpan ] attrib
          val a_href : Svg_types.iri wrap -> [> `Xlink_href ] attrib
          val a_xlink_href : Svg_types.iri wrap -> [> `Xlink_href ] attrib
          val a_requiredFeatures :
            Svg_types.spacestrings wrap -> [> `RequiredFeatures ] attrib
          val a_requiredExtensions :
            Svg_types.spacestrings wrap -> [> `RequiredExtension ] attrib
          val a_systemLanguage :
            Svg_types.commastrings wrap -> [> `SystemLanguage ] attrib
          val a_externalRessourcesRequired :
            bool wrap -> [> `ExternalRessourcesRequired ] attrib
          val a_id : string wrap -> [> `Id ] attrib
          val a_user_data : string -> string wrap -> [> `User_data ] attrib
          val a_xml_base : Svg_types.iri wrap -> [> `Xml_Base ] attrib
          val a_xml_lang : Svg_types.iri wrap -> [> `Xml_Lang ] attrib
          val a_xml_space :
            [< `Default | `Preserve ] wrap -> [> `Xml_Space ] attrib
          val a_type : string wrap -> [> `Type ] attrib
          val a_media : Svg_types.commastrings wrap -> [> `Media ] attrib
          val a_xlink_title : string wrap -> [> `Title ] attrib
          val a_class : Svg_types.spacestrings wrap -> [> `Class ] attrib
          val a_style : string wrap -> [> `Style ] attrib
          val a_transform :
            Svg_types.transforms wrap -> [> `Transform ] attrib
          val a_viewBox : Svg_types.fourfloats wrap -> [> `ViewBox ] attrib
          val a_d : string wrap -> [> `D ] attrib
          val a_pathLength : float wrap -> [> `PathLength ] attrib
          val a_rx : Svg_types.Unit.length wrap -> [> `Rx ] attrib
          val a_ry : Svg_types.Unit.length wrap -> [> `Ry ] attrib
          val a_cx : Svg_types.Unit.length wrap -> [> `Cx ] attrib
          val a_cy : Svg_types.Unit.length wrap -> [> `Cy ] attrib
          val a_r : Svg_types.Unit.length wrap -> [> `R ] attrib
          val a_x1 : Svg_types.coord wrap -> [> `X1 ] attrib
          val a_y1 : Svg_types.coord wrap -> [> `Y1 ] attrib
          val a_x2 : Svg_types.coord wrap -> [> `X2 ] attrib
          val a_y2 : Svg_types.coord wrap -> [> `Y2 ] attrib
          val a_points : Svg_types.coords wrap -> [> `Points ] attrib
          val a_x_list : Svg_types.lengths wrap -> [> `X_list ] attrib
          val a_y_list : Svg_types.lengths wrap -> [> `Y_list ] attrib
          val a_dx : Svg_types.number wrap -> [> `Dx ] attrib
          val a_dy : Svg_types.number wrap -> [> `Dy ] attrib
          val a_dx_list : Svg_types.lengths wrap -> [> `Dx_list ] attrib
          val a_dy_list : Svg_types.lengths wrap -> [> `Dy_list ] attrib
          val a_lengthAdjust :
            [< `Spacing | `SpacingAndGlyphs ] wrap ->
            [> `LengthAdjust ] attrib
          val a_textLength :
            Svg_types.Unit.length wrap -> [> `TextLength ] attrib
          val a_text_anchor :
            [< `End | `Inherit | `Middle | `Start ] wrap ->
            [> `Text_Anchor ] attrib
          val a_text_decoration :
            [< `Blink
             | `Inherit
             | `Line_through
             | `None
             | `Overline
             | `Underline ]
            wrap -> [> `Text_Decoration ] attrib
          val a_text_rendering :
            [< `Auto
             | `GeometricPrecision
             | `Inherit
             | `OptimizeLegibility
             | `OptimizeSpeed ]
            wrap -> [> `Text_Rendering ] attrib
          val a_rotate : Svg_types.numbers wrap -> [> `Rotate ] attrib
          val a_startOffset :
            Svg_types.Unit.length wrap -> [> `StartOffset ] attrib
          val a_method : [< `Align | `Stretch ] wrap -> [> `Method ] attrib
          val a_spacing : [< `Auto | `Exact ] wrap -> [> `Spacing ] attrib
          val a_glyphRef : string wrap -> [> `GlyphRef ] attrib
          val a_format : string wrap -> [> `Format ] attrib
          val a_markerUnits :
            [< `StrokeWidth | `UserSpaceOnUse ] wrap ->
            [> `MarkerUnits ] attrib
          val a_refX : Svg_types.coord wrap -> [> `RefX ] attrib
          val a_refY : Svg_types.coord wrap -> [> `RefY ] attrib
          val a_markerWidth :
            Svg_types.Unit.length wrap -> [> `MarkerWidth ] attrib
          val a_markerHeight :
            Svg_types.Unit.length wrap -> [> `MarkerHeight ] attrib
          val a_orient :
            Svg_types.Unit.angle option wrap -> [> `Orient ] attrib
          val a_local : string wrap -> [> `Local ] attrib
          val a_rendering_intent :
            [< `Absolute_colorimetric
             | `Auto
             | `Perceptual
             | `Relative_colorimetric
             | `Saturation ]
            wrap -> [> `Rendering_Indent ] attrib
          val a_gradientUnits :
            [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
            [ `GradientUnits ] attrib
          val a_gradientTransform :
            Svg_types.transforms wrap -> [> `Gradient_Transform ] attrib
          val a_spreadMethod :
            [< `Pad | `Reflect | `Repeat ] wrap -> [> `SpreadMethod ] attrib
          val a_fx : Svg_types.coord wrap -> [> `Fx ] attrib
          val a_fy : Svg_types.coord wrap -> [> `Fy ] attrib
          val a_offset :
            [< `Number of Svg_types.number
             | `Percentage of Svg_types.percentage ]
            wrap -> [> `Offset ] attrib
          val a_patternUnits :
            [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
            [> `PatternUnits ] attrib
          val a_patternContentUnits :
            [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
            [> `PatternContentUnits ] attrib
          val a_patternTransform :
            Svg_types.transforms wrap -> [> `PatternTransform ] attrib
          val a_clipPathUnits :
            [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
            [> `ClipPathUnits ] attrib
          val a_maskUnits :
            [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
            [> `MaskUnits ] attrib
          val a_maskContentUnits :
            [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
            [> `MaskContentUnits ] attrib
          val a_primitiveUnits :
            [< `ObjectBoundingBox | `UserSpaceOnUse ] wrap ->
            [> `PrimitiveUnits ] attrib
          val a_filterRes :
            Svg_types.number_optional_number wrap ->
            [> `FilterResUnits ] attrib
          val a_result : string wrap -> [> `Result ] attrib
          val a_in :
            [< `BackgroundAlpha
             | `BackgroundImage
             | `FillPaint
             | `Ref of string
             | `SourceAlpha
             | `SourceGraphic
             | `StrokePaint ]
            wrap -> [> `In ] attrib
          val a_in2 :
            [< `BackgroundAlpha
             | `BackgroundImage
             | `FillPaint
             | `Ref of string
             | `SourceAlpha
             | `SourceGraphic
             | `StrokePaint ]
            wrap -> [> `In2 ] attrib
          val a_azimuth : float wrap -> [> `Azimuth ] attrib
          val a_elevation : float wrap -> [> `Elevation ] attrib
          val a_pointsAtX : float wrap -> [> `PointsAtX ] attrib
          val a_pointsAtY : float wrap -> [> `PointsAtY ] attrib
          val a_pointsAtZ : float wrap -> [> `PointsAtZ ] attrib
          val a_specularExponent :
            float wrap -> [> `SpecularExponent ] attrib
          val a_specularConstant :
            float wrap -> [> `SpecularConstant ] attrib
          val a_limitingConeAngle :
            float wrap -> [> `LimitingConeAngle ] attrib
          val a_mode :
            [< `Darken | `Lighten | `Multiply | `Normal | `Screen ] wrap ->
            [> `Mode ] attrib
          val a_feColorMatrix_type :
            [< `HueRotate | `LuminanceToAlpha | `Matrix | `Saturate ] wrap ->
            [> `Typefecolor ] attrib
          val a_values : Svg_types.numbers wrap -> [> `Values ] attrib
          val a_transfer_type :
            [< `Discrete | `Gamma | `Identity | `Linear | `Table ] wrap ->
            [> `Type_transfert ] attrib
          val a_tableValues :
            Svg_types.numbers wrap -> [> `TableValues ] attrib
          val a_intercept : Svg_types.number wrap -> [> `Intercept ] attrib
          val a_amplitude : Svg_types.number wrap -> [> `Amplitude ] attrib
          val a_exponent : Svg_types.number wrap -> [> `Exponent ] attrib
          val a_transfer_offset :
            Svg_types.number wrap -> [> `Offset_transfer ] attrib
          val a_feComposite_operator :
            [< `Arithmetic | `Atop | `In | `Out | `Over | `Xor ] wrap ->
            [> `OperatorComposite ] attrib
          val a_k1 : Svg_types.number wrap -> [> `K1 ] attrib
          val a_k2 : Svg_types.number wrap -> [> `K2 ] attrib
          val a_k3 : Svg_types.number wrap -> [> `K3 ] attrib
          val a_k4 : Svg_types.number wrap -> [> `K4 ] attrib
          val a_order :
            Svg_types.number_optional_number wrap -> [> `Order ] attrib
          val a_kernelMatrix :
            Svg_types.numbers wrap -> [> `KernelMatrix ] attrib
          val a_divisor : Svg_types.number wrap -> [> `Divisor ] attrib
          val a_bias : Svg_types.number wrap -> [> `Bias ] attrib
          val a_kernelUnitLength :
            Svg_types.number_optional_number wrap ->
            [> `KernelUnitLength ] attrib
          val a_targetX : int wrap -> [> `TargetX ] attrib
          val a_targetY : int wrap -> [> `TargetY ] attrib
          val a_edgeMode :
            [< `Duplicate | `None | `Wrap ] wrap -> [> `TargetY ] attrib
          val a_preserveAlpha : bool wrap -> [> `TargetY ] attrib
          val a_surfaceScale :
            Svg_types.number wrap -> [> `SurfaceScale ] attrib
          val a_diffuseConstant :
            Svg_types.number wrap -> [> `DiffuseConstant ] attrib
          val a_scale : Svg_types.number wrap -> [> `Scale ] attrib
          val a_xChannelSelector :
            [< `A | `B | `G | `R ] wrap -> [> `XChannelSelector ] attrib
          val a_yChannelSelector :
            [< `A | `B | `G | `R ] wrap -> [> `YChannelSelector ] attrib
          val a_stdDeviation :
            Svg_types.number_optional_number wrap ->
            [> `StdDeviation ] attrib
          val a_feMorphology_operator :
            [< `Dilate | `Erode ] wrap -> [> `OperatorMorphology ] attrib
          val a_radius :
            Svg_types.number_optional_number wrap -> [> `Radius ] attrib
          val a_baseFrenquency :
            Svg_types.number_optional_number wrap ->
            [> `BaseFrequency ] attrib
          val a_numOctaves : int wrap -> [> `NumOctaves ] attrib
          val a_seed : Svg_types.number wrap -> [> `Seed ] attrib
          val a_stitchTiles :
            [< `NoStitch | `Stitch ] wrap -> [> `StitchTiles ] attrib
          val a_feTurbulence_type :
            [< `FractalNoise | `Turbulence ] wrap -> [> `TypeStitch ] attrib
          val a_xlink_show :
            [< `New | `Replace ] wrap -> [> `Xlink_show ] attrib
          val a_xlink_actuate :
            [< `None | `OnLoad | `OnRequest | `Other ] wrap ->
            [> `Xlink_actuate ] attrib
          val a_target : string wrap -> [> `Xlink_target ] attrib
          val a_viewTarget : string wrap -> [> `ViewTarget ] attrib
          val a_attributeName : string wrap -> [> `AttributeName ] attrib
          val a_attributeType :
            [< `Auto | `CSS | `XML ] wrap -> [> `AttributeType ] attrib
          val a_begin : string wrap -> [> `Begin ] attrib
          val a_dur : string wrap -> [> `Dur ] attrib
          val a_min : string wrap -> [> `Min ] attrib
          val a_max : string wrap -> [> `Max ] attrib
          val a_restart :
            [< `Always | `Never | `WhenNotActive ] wrap ->
            [> `Restart ] attrib
          val a_repeatCount : string wrap -> [> `RepeatCount ] attrib
          val a_repeatDur : string wrap -> [> `RepeatDur ] attrib
          val a_fill : Svg_types.paint wrap -> [> `Fill ] attrib
          val a_animation_fill :
            [< `Freeze | `Remove ] wrap -> [> `Fill_Animation ] attrib
          val a_calcMode :
            [< `Discrete | `Linear | `Paced | `Spline ] wrap ->
            [> `CalcMode ] attrib
          val a_animation_values :
            Svg_types.strings wrap -> [> `Valuesanim ] attrib
          val a_keyTimes : Svg_types.strings wrap -> [> `KeyTimes ] attrib
          val a_keySplines :
            Svg_types.strings wrap -> [> `KeySplines ] attrib
          val a_from : string wrap -> [> `From ] attrib
          val a_to : string wrap -> [> `To ] attrib
          val a_by : string wrap -> [> `By ] attrib
          val a_additive : [< `Replace | `Sum ] wrap -> [> `Additive ] attrib
          val a_accumulate :
            [< `None | `Sum ] wrap -> [> `Accumulate ] attrib
          val a_keyPoints :
            Svg_types.numbers_semicolon wrap -> [> `KeyPoints ] attrib
          val a_path : string wrap -> [> `Path ] attrib
          val a_animateTransform_type :
            [ `Rotate | `Scale | `SkewX | `SkewY | `Translate ] wrap ->
            [ `Typeanimatetransform ] attrib
          val a_horiz_origin_x :
            Svg_types.number wrap -> [> `HorizOriginX ] attrib
          val a_horiz_origin_y :
            Svg_types.number wrap -> [> `HorizOriginY ] attrib
          val a_horiz_adv_x : Svg_types.number wrap -> [> `HorizAdvX ] attrib
          val a_vert_origin_x :
            Svg_types.number wrap -> [> `VertOriginX ] attrib
          val a_vert_origin_y :
            Svg_types.number wrap -> [> `VertOriginY ] attrib
          val a_vert_adv_y : Svg_types.number wrap -> [> `VertAdvY ] attrib
          val a_unicode : string wrap -> [> `Unicode ] attrib
          val a_glyph_name : string wrap -> [> `glyphname ] attrib
          val a_orientation : [< `H | `V ] wrap -> [> `Orientation ] attrib
          val a_arabic_form :
            [< `Initial | `Isolated | `Medial | `Terminal ] wrap ->
            [> `Arabicform ] attrib
          val a_lang : string wrap -> [> `Lang ] attrib
          val a_u1 : string wrap -> [> `U1 ] attrib
          val a_u2 : string wrap -> [> `U2 ] attrib
          val a_g1 : string wrap -> [> `G1 ] attrib
          val a_g2 : string wrap -> [> `G2 ] attrib
          val a_k : string wrap -> [> `K ] attrib
          val a_font_family : string wrap -> [> `Font_Family ] attrib
          val a_font_style : string wrap -> [> `Font_Style ] attrib
          val a_font_variant : string wrap -> [> `Font_Variant ] attrib
          val a_font_weight : string wrap -> [> `Font_Weight ] attrib
          val a_font_stretch : string wrap -> [> `Font_Stretch ] attrib
          val a_font_size : string wrap -> [> `Font_Size ] attrib
          val a_unicode_range : string wrap -> [> `UnicodeRange ] attrib
          val a_units_per_em : string wrap -> [> `UnitsPerEm ] attrib
          val a_stemv : Svg_types.number wrap -> [> `Stemv ] attrib
          val a_stemh : Svg_types.number wrap -> [> `Stemh ] attrib
          val a_slope : Svg_types.number wrap -> [> `Slope ] attrib
          val a_cap_height : Svg_types.number wrap -> [> `CapHeight ] attrib
          val a_x_height : Svg_types.number wrap -> [> `XHeight ] attrib
          val a_accent_height :
            Svg_types.number wrap -> [> `AccentHeight ] attrib
          val a_ascent : Svg_types.number wrap -> [> `Ascent ] attrib
          val a_widths : string wrap -> [> `Widths ] attrib
          val a_bbox : string wrap -> [> `Bbox ] attrib
          val a_ideographic :
            Svg_types.number wrap -> [> `Ideographic ] attrib
          val a_alphabetic : Svg_types.number wrap -> [> `Alphabetic ] attrib
          val a_mathematical :
            Svg_types.number wrap -> [> `Mathematical ] attrib
          val a_hanging : Svg_types.number wrap -> [> `Hanging ] attrib
          val a_videographic :
            Svg_types.number wrap -> [> `VIdeographic ] attrib
          val a_v_alphabetic :
            Svg_types.number wrap -> [> `VAlphabetic ] attrib
          val a_v_mathematical :
            Svg_types.number wrap -> [> `VMathematical ] attrib
          val a_v_hanging : Svg_types.number wrap -> [> `VHanging ] attrib
          val a_underline_position :
            Svg_types.number wrap -> [> `UnderlinePosition ] attrib
          val a_underline_thickness :
            Svg_types.number wrap -> [> `UnderlineThickness ] attrib
          val a_strikethrough_position :
            Svg_types.number wrap -> [> `StrikethroughPosition ] attrib
          val a_strikethrough_thickness :
            Svg_types.number wrap -> [> `StrikethroughThickness ] attrib
          val a_overline_position :
            Svg_types.number wrap -> [> `OverlinePosition ] attrib
          val a_overline_thickness :
            Svg_types.number wrap -> [> `OverlineThickness ] attrib
          val a_string : string wrap -> [> `String ] attrib
          val a_name : string wrap -> [> `Name ] attrib
          val a_alignment_baseline :
            [< `After_edge
             | `Alphabetic
             | `Auto
             | `Baseline
             | `Before_edge
             | `Central
             | `Hanging
             | `Ideographic
             | `Inherit
             | `Mathematical
             | `Middle
             | `Text_after_edge
             | `Text_before_edge ]
            wrap -> [> `Alignment_Baseline ] attrib
          val a_dominant_baseline :
            [< `Alphabetic
             | `Auto
             | `Central
             | `Hanging
             | `Ideographic
             | `Inherit
             | `Mathematical
             | `Middle
             | `No_change
             | `Reset_size
             | `Text_after_edge
             | `Text_before_edge
             | `Use_script ]
            wrap -> [> `Dominant_Baseline ] attrib
          val a_stop_color : Svg_types.color wrap -> [> `Stop_Color ] attrib
          val a_stop_opacity :
            Svg_types.number wrap -> [> `Stop_Opacity ] attrib
          val a_stroke : Svg_types.paint wrap -> [> `Stroke ] attrib
          val a_stroke_width :
            Svg_types.Unit.length wrap -> [> `Stroke_Width ] attrib
          val a_stroke_linecap :
            [< `Butt | `Round | `Square ] wrap -> [> `Stroke_Linecap ] attrib
          val a_stroke_linejoin :
            [< `Bever | `Miter | `Round ] wrap ->
            [> `Stroke_Linejoin ] attrib
          val a_stroke_miterlimit :
            float wrap -> [> `Stroke_Miterlimit ] attrib
          val a_stroke_dasharray :
            Svg_types.Unit.length list wrap -> [> `Stroke_Dasharray ] attrib
          val a_stroke_dashoffset :
            Svg_types.Unit.length wrap -> [> `Stroke_Dashoffset ] attrib
          val a_stroke_opacity : float wrap -> [> `Stroke_Opacity ] attrib
          val a_onabort : Xml.event_handler -> [> `OnAbort ] attrib
          val a_onactivate : Xml.event_handler -> [> `OnActivate ] attrib
          val a_onbegin : Xml.event_handler -> [> `OnBegin ] attrib
          val a_onend : Xml.event_handler -> [> `OnEnd ] attrib
          val a_onerror : Xml.event_handler -> [> `OnError ] attrib
          val a_onfocusin : Xml.event_handler -> [> `OnFocusIn ] attrib
          val a_onfocusout : Xml.event_handler -> [> `OnFocusOut ] attrib
          val a_onload : Xml.event_handler -> [> `OnLoad ] attrib
          val a_onrepeat : Xml.event_handler -> [> `OnRepeat ] attrib
          val a_onresize : Xml.event_handler -> [> `OnResize ] attrib
          val a_onscroll : Xml.event_handler -> [> `OnScroll ] attrib
          val a_onunload : Xml.event_handler -> [> `OnUnload ] attrib
          val a_onzoom : Xml.event_handler -> [> `OnZoom ] attrib
          val a_onclick : Xml.mouse_event_handler -> [> `OnClick ] attrib
          val a_onmousedown :
            Xml.mouse_event_handler -> [> `OnMouseDown ] attrib
          val a_onmouseup : Xml.mouse_event_handler -> [> `OnMouseUp ] attrib
          val a_onmouseover :
            Xml.mouse_event_handler -> [> `OnMouseOver ] attrib
          val a_onmouseout :
            Xml.mouse_event_handler -> [> `OnMouseOut ] attrib
          val a_onmousemove :
            Xml.mouse_event_handler -> [> `OnMouseMove ] attrib
          val a_ontouchstart :
            Xml.touch_event_handler -> [> `OnTouchStart ] attrib
          val a_ontouchend :
            Xml.touch_event_handler -> [> `OnTouchEnd ] attrib
          val a_ontouchmove :
            Xml.touch_event_handler -> [> `OnTouchMove ] attrib
          val a_ontouchcancel :
            Xml.touch_event_handler -> [> `OnTouchCancel ] attrib
          val txt : string wrap -> [> Svg_types.txt ] elt
          val svg :
            ([< Svg_types.svg_attr ], [< Svg_types.svg_content ],
             [> Svg_types.svg ])
            star
          val g :
            ([< Svg_types.g_attr ], [< Svg_types.g_content ],
             [> Svg_types.g ])
            star
          val defs :
            ([< Svg_types.defs_attr ], [< Svg_types.defs_content ],
             [> Svg_types.defs ])
            star
          val desc :
            ([< Svg_types.desc_attr ], [< Svg_types.desc_content ],
             [> Svg_types.desc ])
            unary
          val title :
            ([< Svg_types.title_attr ], [< Svg_types.title_content ],
             [> Svg_types.title ])
            unary
          val symbol :
            ([< Svg_types.symbol_attr ], [< Svg_types.symbol_content ],
             [> Svg_types.symbol ])
            star
          val use :
            ([< Svg_types.use_attr ], [< Svg_types.use_content ],
             [> Svg_types.use ])
            star
          val image :
            ([< Svg_types.image_attr ], [< Svg_types.image_content ],
             [> Svg_types.image ])
            star
          val switch :
            ([< Svg_types.switch_attr ], [< Svg_types.switch_content ],
             [> Svg_types.switch ])
            star
          val style :
            ([< Svg_types.style_attr ], [< Svg_types.style_content ],
             [> Svg_types.style ])
            unary
          val path :
            ([< Svg_types.path_attr ], [< Svg_types.path_content ],
             [> Svg_types.path ])
            star
          val rect :
            ([< Svg_types.rect_attr ], [< Svg_types.rect_content ],
             [> Svg_types.rect ])
            star
          val circle :
            ([< Svg_types.circle_attr ], [< Svg_types.circle_content ],
             [> Svg_types.circle ])
            star
          val ellipse :
            ([< Svg_types.ellipse_attr ], [< Svg_types.ellipse_content ],
             [> Svg_types.ellipse ])
            star
          val line :
            ([< Svg_types.line_attr ], [< Svg_types.line_content ],
             [> Svg_types.line ])
            star
          val polyline :
            ([< Svg_types.polyline_attr ], [< Svg_types.polyline_content ],
             [> Svg_types.polyline ])
            star
          val polygon :
            ([< Svg_types.polygon_attr ], [< Svg_types.polygon_content ],
             [> Svg_types.polygon ])
            star
          val text :
            ([< Svg_types.text_attr ], [< Svg_types.text_content ],
             [> Svg_types.text ])
            star
          val tspan :
            ([< Svg_types.tspan_attr ], [< Svg_types.tspan_content ],
             [> Svg_types.tspan ])
            star
          val tref :
            ([< Svg_types.tref_attr ], [< Svg_types.tref_content ],
             [> Svg_types.tref ])
            star
          val textPath :
            ([< Svg_types.textpath_attr ], [< Svg_types.textpath_content ],
             [> Svg_types.textpath ])
            star
          val altGlyph :
            ([< Svg_types.altglyph_attr ], [< Svg_types.altglyph_content ],
             [> Svg_types.altglyph ])
            unary
          type altglyphdef_content =
              [ `Item of Svg_types.altglyphitem elt list
              | `Ref of Svg_types.glyphref elt list ]
          val altGlyphDef :
            ([< Svg_types.altglyphdef_attr ], [< altglyphdef_content ],
             [> Svg_types.altglyphdef ])
            unary
          val altGlyphItem :
            ([< Svg_types.altglyphitem_attr ],
             [< Svg_types.altglyphitem_content ],
             [> Svg_types.altglyphitem ])
            star
          val glyphRef :
            ([< Svg_types.glyphref_attr ], [> Svg_types.glyphref ]) nullary
          val marker :
            ([< Svg_types.marker_attr ], [< Svg_types.marker_content ],
             [> Svg_types.marker ])
            star
          val color_profile :
            ([< Svg_types.colorprofile_attr ],
             [< Svg_types.colorprofile_content ],
             [> Svg_types.colorprofile ])
            star
          val linearGradient :
            ([< Svg_types.lineargradient_attr ],
             [< Svg_types.lineargradient_content ],
             [> Svg_types.lineargradient ])
            star
          val radialGradient :
            ([< Svg_types.radialgradient_attr ],
             [< Svg_types.radialgradient_content ],
             [> Svg_types.radialgradient ])
            star
          val stop :
            ([< Svg_types.stop_attr ], [< Svg_types.stop_content ],
             [> Svg_types.stop ])
            star
          val pattern :
            ([< Svg_types.pattern_attr ], [< Svg_types.pattern_content ],
             [> Svg_types.pattern ])
            star
          val clipPath :
            ([< Svg_types.clippath_attr ], [< Svg_types.clippath_content ],
             [> Svg_types.clippath ])
            star
          val filter :
            ([< Svg_types.filter_attr ], [< Svg_types.filter_content ],
             [> Svg_types.filter ])
            star
          val feDistantLight :
            ([< Svg_types.fedistantlight_attr ],
             [< Svg_types.fedistantlight_content ],
             [> Svg_types.fedistantlight ])
            star
          val fePointLight :
            ([< Svg_types.fepointlight_attr ],
             [< Svg_types.fepointlight_content ],
             [> Svg_types.fepointlight ])
            star
          val feSpotLight :
            ([< Svg_types.fespotlight_attr ],
             [< Svg_types.fespotlight_content ], [> Svg_types.fespotlight ])
            star
          val feBlend :
            ([< Svg_types.feblend_attr ], [< Svg_types.feblend_content ],
             [> Svg_types.feblend ])
            star
          val feColorMatrix :
            ([< Svg_types.fecolormatrix_attr ],
             [< Svg_types.fecolormatrix_content ],
             [> Svg_types.fecolormatrix ])
            star
          val feComponentTransfer :
            ([< Svg_types.fecomponenttransfer_attr ],
             [< Svg_types.fecomponenttransfer_content ],
             [> Svg_types.fecomponenttransfer ])
            star
          val feFuncA :
            ([< Svg_types.fefunca_attr ], [< Svg_types.fefunca_content ],
             [> Svg_types.fefunca ])
            star
          val feFuncG :
            ([< Svg_types.fefuncg_attr ], [< Svg_types.fefuncg_content ],
             [> Svg_types.fefuncg ])
            star
          val feFuncB :
            ([< Svg_types.fefuncb_attr ], [< Svg_types.fefuncb_content ],
             [> Svg_types.fefuncb ])
            star
          val feFuncR :
            ([< Svg_types.fefuncr_attr ], [< Svg_types.fefuncr_content ],
             [> Svg_types.fefuncr ])
            star
          val feComposite :
            ([< Svg_types.fecomposite_attr ],
             [< Svg_types.fecomposite_content ], [> Svg_types.fecomposite ])
            star
          val feConvolveMatrix :
            ([< Svg_types.feconvolvematrix_attr ],
             [< Svg_types.feconvolvematrix_content ],
             [> Svg_types.feconvolvematrix ])
            star
          val feDiffuseLighting :
            ([< Svg_types.fediffuselighting_attr ],
             [< Svg_types.fediffuselighting_content ],
             [> Svg_types.fediffuselighting ])
            star
          val feDisplacementMap :
            ([< Svg_types.fedisplacementmap_attr ],
             [< Svg_types.fedisplacementmap_content ],
             [> Svg_types.fedisplacementmap ])
            star
          val feFlood :
            ([< Svg_types.feflood_attr ], [< Svg_types.feflood_content ],
             [> Svg_types.feflood ])
            star
          val feGaussianBlur :
            ([< Svg_types.fegaussianblur_attr ],
             [< Svg_types.fegaussianblur_content ],
             [> Svg_types.fegaussianblur ])
            star
          val feImage :
            ([< Svg_types.feimage_attr ], [< Svg_types.feimage_content ],
             [> Svg_types.feimage ])
            star
          val feMerge :
            ([< Svg_types.femerge_attr ], [< Svg_types.femerge_content ],
             [> Svg_types.femerge ])
            star
          val feMorphology :
            ([< Svg_types.femorphology_attr ],
             [< Svg_types.femorphology_content ],
             [> Svg_types.femorphology ])
            star
          val feOffset :
            ([< Svg_types.feoffset_attr ], [< Svg_types.feoffset_content ],
             [> Svg_types.feoffset ])
            star
          val feSpecularLighting :
            ([< Svg_types.fespecularlighting_attr ],
             [< Svg_types.fespecularlighting_content ],
             [> Svg_types.fespecularlighting ])
            star
          val feTile :
            ([< Svg_types.fetile_attr ], [< Svg_types.fetile_content ],
             [> Svg_types.fetile ])
            star
          val feTurbulence :
            ([< Svg_types.feturbulence_attr ],
             [< Svg_types.feturbulence_content ],
             [> Svg_types.feturbulence ])
            star
          val cursor :
            ([< Svg_types.cursor_attr ], [< Svg_types.cursor_content ],
             [> Svg_types.cursor ])
            star
          val a :
            ([< Svg_types.a_attr ], [< Svg_types.a_content ],
             [> Svg_types.a ])
            star
          val view :
            ([< Svg_types.view_attr ], [< Svg_types.view_content ],
             [> Svg_types.view ])
            star
          val script :
            ([< Svg_types.script_attr ], [< Svg_types.script_content ],
             [> Svg_types.script ])
            unary
          val animation :
            ([< Svg_types.animation_attr ], [< Svg_types.animation_content ],
             [> Svg_types.animation ])
            star
          val set :
            ([< Svg_types.set_attr ], [< Svg_types.set_content ],
             [> Svg_types.set ])
            star
          val animateMotion :
            ([< Svg_types.animatemotion_attr ],
             [< Svg_types.animatemotion_content ],
             [> Svg_types.animatemotion ])
            star
          val mpath :
            ([< Svg_types.mpath_attr ], [< Svg_types.mpath_content ],
             [> Svg_types.mpath ])
            star
          val animateColor :
            ([< Svg_types.animatecolor_attr ],
             [< Svg_types.animatecolor_content ],
             [> Svg_types.animatecolor ])
            star
          val animateTransform :
            ([< Svg_types.animatetransform_attr ],
             [< Svg_types.animatetransform_content ],
             [> Svg_types.animatetransform ])
            star
          val font :
            ([< Svg_types.font_attr ], [< Svg_types.font_content ],
             [> Svg_types.font ])
            star
          val glyph :
            ([< Svg_types.glyph_attr ], [< Svg_types.glyph_content ],
             [> Svg_types.glyph ])
            star
          val missing_glyph :
            ([< Svg_types.missingglyph_attr ],
             [< Svg_types.missingglyph_content ],
             [> Svg_types.missingglyph ])
            star
          val hkern :
            ([< Svg_types.hkern_attr ], [> Svg_types.hkern ]) nullary
          val vkern :
            ([< Svg_types.vkern_attr ], [> Svg_types.vkern ]) nullary
          val font_face :
            ([< Svg_types.font_face_attr ], [> Svg_types.font_face ]) nullary
          val font_face_src :
            ([< Svg_types.font_face_src_attr ],
             [< Svg_types.font_face_src_content ],
             [> Svg_types.font_face_src ])
            star
          val font_face_uri :
            ([< Svg_types.font_face_uri_attr ],
             [< Svg_types.font_face_uri_content ],
             [> Svg_types.font_face_uri ])
            star
          val font_face_format :
            ([< Svg_types.font_face_format_attr ],
             [> Svg_types.font_face_format ])
            nullary
          val font_face_name :
            ([< Svg_types.font_face_name_attr ],
             [> Svg_types.font_face_name ])
            nullary
          val metadata :
            ?a:Svg_types.metadata_attr attrib list ->
            Xml.elt list_wrap -> [> Svg_types.metadata ] elt
          val foreignObject :
            ?a:Svg_types.foreignobject_attr attrib list ->
            Xml.elt list_wrap -> [> Svg_types.foreignobject ] elt
          val pcdata : string wrap -> [> Svg_types.txt ] elt
          val of_seq : Xml_stream.signal Seq.t -> 'a elt list_wrap
          val tot : Xml.elt -> 'a elt
          val totl : Xml.elt list_wrap -> 'a elt list_wrap
          val toelt : 'a elt -> Xml.elt
          val toeltl : 'a elt list_wrap -> Xml.elt list_wrap
          val doc_toelt : doc -> Xml.elt
          val to_xmlattribs : 'a attrib list -> Xml.attrib list
          val to_attrib : Xml.attrib -> 'a attrib
          module Unsafe :
            sig
              val data : string wrap -> 'a elt
              val node :
                string -> ?a:'a attrib list -> 'b elt list_wrap -> 'c elt
              val leaf : string -> ?a:'a attrib list -> unit -> 'b elt
              val coerce_elt : 'a elt -> 'b elt
              val string_attrib : string -> string wrap -> 'a attrib
              val float_attrib : string -> float wrap -> 'a attrib
              val int_attrib : string -> int wrap -> 'a attrib
              val uri_attrib : string -> uri wrap -> 'a attrib
              val space_sep_attrib : string -> string list wrap -> 'a attrib
              val comma_sep_attrib : string -> string list wrap -> 'a attrib
            end
        end
      module C :
        sig
          val node :
            ?init:'Eliom_content.Svg.D.elt ->
            'Eliom_content.Svg.elt Eliom_client_value.t ->
            'Eliom_content.Svg.D.elt
          val attr :
            ?init:'Eliom_content.Svg.attrib ->
            'Eliom_content.Svg.attrib Eliom_client_value.t ->
            'Eliom_content.Svg.attrib
        end
      module Id :
        sig
          type +'a id
          val new_elt_id : ?global:bool -> unit -> 'Eliom_content.Svg.Id.id
          val create_named_elt :
            id:'Eliom_content.Svg.Id.id ->
            'Eliom_content.Svg.elt -> 'Eliom_content.Svg.elt
          val create_global_elt :
            'Eliom_content.Svg.elt -> 'Eliom_content.Svg.elt
          val create_request_elt :
            ?reset:bool ->
            'Eliom_content.Svg.elt -> 'Eliom_content.Svg.elt
          val get_element :
            'Eliom_content.Svg.Id.id -> 'Eliom_content.Svg.elt option
        end
      module Manip :
        sig
          val appendChild :
            ?before:'Eliom_content.Svg.elt ->
            'Eliom_content.Svg.elt -> 'Eliom_content.Svg.elt -> unit
          val appendChildren :
            ?before:'Eliom_content.Svg.elt ->
            'Eliom_content.Svg.elt -> 'Eliom_content.Svg.elt list -> unit
          val insertFirstChild :
            'Eliom_content.Svg.elt -> 'Eliom_content.Svg.elt -> unit
          val nth :
            'Eliom_content.Svg.elt ->
            int -> 'Eliom_content.Svg.elt option
          val childLength : 'Eliom_content.Svg.elt -> int
          val removeChild :
            'Eliom_content.Svg.elt -> 'Eliom_content.Svg.elt -> unit
          val replaceChild :
            'Eliom_content.Svg.elt ->
            'Eliom_content.Svg.elt -> 'Eliom_content.Svg.elt -> unit
          val removeChildren : 'Eliom_content.Svg.elt -> unit
          val removeSelf : 'Eliom_content.Svg.elt -> unit
          val replaceChildren :
            'Eliom_content.Svg.elt -> 'Eliom_content.Svg.elt list -> unit
          val parentNode :
            'Eliom_content.Svg.elt -> 'Eliom_content.Svg.elt option
          val nextSibling :
            'Eliom_content.Svg.elt -> 'Eliom_content.Svg.elt option
          val previousSibling :
            'Eliom_content.Svg.elt -> 'Eliom_content.Svg.elt option
          val insertBefore :
            before:'Eliom_content.Svg.elt ->
            'Eliom_content.Svg.elt -> unit
          val insertAfter :
            after:'Eliom_content.Svg.elt ->
            'Eliom_content.Svg.elt -> unit
          val replaceSelf :
            'Eliom_content.Svg.elt -> 'Eliom_content.Svg.elt -> unit
          module Named :
            sig
              val appendChild :
                ?before:'Eliom_content.Svg.elt ->
                'Eliom_content.Svg.Id.id ->
                'Eliom_content.Svg.elt -> unit
              val appendChildren :
                ?before:'Eliom_content.Svg.elt ->
                'Eliom_content.Svg.Id.id ->
                'Eliom_content.Svg.elt list -> unit
              val removeChild :
                'Eliom_content.Svg.Id.id ->
                'Eliom_content.Svg.elt -> unit
              val replaceChild :
                'Eliom_content.Svg.Id.id ->
                'Eliom_content.Svg.elt -> 'Eliom_content.Svg.elt -> unit
              val removeChildren : 'Eliom_content.Svg.Id.id -> unit
              val replaceChildren :
                'Eliom_content.Svg.Id.id ->
                'Eliom_content.Svg.elt list -> unit
            end
          val childNodes :
            'Eliom_content.Svg.elt ->
            Js_of_ocaml.Dom.node Js_of_ocaml.Js.t list
          val childElements :
            'Eliom_content.Svg.elt ->
            Js_of_ocaml.Dom.element Js_of_ocaml.Js.t list
          module Class :
            sig
              val contain : 'Eliom_content.Svg.elt -> string -> bool
              val remove : 'Eliom_content.Svg.elt -> string -> unit
              val removes : 'Eliom_content.Svg.elt -> string list -> unit
              val add : 'Eliom_content.Svg.elt -> string -> unit
              val adds : 'Eliom_content.Svg.elt -> string list -> unit
              val replace :
                'Eliom_content.Svg.elt -> string -> string -> unit
              val clear : 'Eliom_content.Svg.elt -> unit
              val toggle : 'Eliom_content.Svg.elt -> string -> unit
              val toggle2 :
                'Eliom_content.Svg.elt -> string -> string -> unit
            end
        end
      module To_dom :
        sig
          val of_element :
            'Eliom_content.Svg.elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_node :
            'Eliom_content.Svg.elt -> Js_of_ocaml.Dom.node Js_of_ocaml.Js.t
          val of_pcdata :
            [> `Pcdata ] Eliom_content.Svg.elt ->
            Js_of_ocaml.Dom.text Js_of_ocaml.Js.t
        end
      module Of_dom :
        sig
          val of_element :
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t ->
            'Eliom_content.Svg.elt
        end
    end
  module Html :
    sig
      type +'a elt
      type +'a attrib
      type uri = Eliom_content.Xml.uri
      type 'a form_param
      module F :
        sig
          module Raw :
            sig
              type 'a elt = 'a elt
              type doc = Html_types.html elt
              type 'a attrib = 'a attrib
              module Xml :
                sig
                  module W :
                    sig
                      type 'a t = 'Xml.W.t
                      val return : '-> 'a t
                      type ('a, 'b) ft = ('a, 'b) Xml.W.ft
                      val fmap : ('a, 'b) ft -> 'a t -> 'b t
                      type 'a tlist = 'Xml.W.tlist
                      val nil : unit -> 'a tlist
                      val singleton : 'a t -> 'a tlist
                      val cons : 'a t -> 'a tlist -> 'a tlist
                      val append : 'a tlist -> 'a tlist -> 'a tlist
                      val map : ('a, 'b) ft -> 'a tlist -> 'b tlist
                    end
                  type 'a wrap = 'W.t
                  type 'a list_wrap = 'W.tlist
                  type uri = Xml.uri
                  val string_of_uri : (uri, string) W.ft
                  val uri_of_string : (string, uri) W.ft
                  type aname = string
                  type event_handler = Xml.event_handler
                  type mouse_event_handler = Xml.mouse_event_handler
                  type keyboard_event_handler = Xml.keyboard_event_handler
                  type touch_event_handler = Xml.touch_event_handler
                  type attrib = Xml.attrib
                  val float_attrib : aname -> float wrap -> attrib
                  val int_attrib : aname -> int wrap -> attrib
                  val string_attrib : aname -> string wrap -> attrib
                  val space_sep_attrib : aname -> string list wrap -> attrib
                  val comma_sep_attrib : aname -> string list wrap -> attrib
                  val event_handler_attrib : aname -> event_handler -> attrib
                  val mouse_event_handler_attrib :
                    aname -> mouse_event_handler -> attrib
                  val keyboard_event_handler_attrib :
                    aname -> keyboard_event_handler -> attrib
                  val touch_event_handler_attrib :
                    aname -> touch_event_handler -> attrib
                  val uri_attrib : aname -> uri wrap -> attrib
                  val uris_attrib : aname -> uri list wrap -> attrib
                  type elt = Xml.elt
                  type ename = string
                  val empty : unit -> elt
                  val comment : string -> elt
                  val pcdata : string wrap -> elt
                  val encodedpcdata : string wrap -> elt
                  val entity : string -> elt
                  val leaf : ?a:attrib list -> ename -> elt
                  val node : ?a:attrib list -> ename -> elt list_wrap -> elt
                  val cdata : string -> elt
                  val cdata_script : string -> elt
                  val cdata_style : string -> elt
                end
              type 'a wrap = 'Xml.W.t
              type 'a list_wrap = 'Xml.W.tlist
              type ('a, 'b) nullary = ?a:'a attrib list -> unit -> 'b elt
              type ('a, 'b, 'c) unary =
                  ?a:'a attrib list -> 'b elt wrap -> 'c elt
              type ('a, 'b, 'c) star =
                  ?a:'a attrib list -> 'b elt list_wrap -> 'c elt
              module Info : Xml_sigs.Info
              type uri = Xml.uri
              val string_of_uri : (uri, string) Xml.W.ft
              val uri_of_string : (string, uri) Xml.W.ft
              val a_class : Html_types.nmtokens wrap -> [> `Class ] attrib
              val a_user_data :
                Html_types.nmtoken ->
                Html_types.text wrap -> [> `User_data ] attrib
              val a_id : Html_types.text wrap -> [> `Id ] attrib
              val a_title : Html_types.text wrap -> [> `Title ] attrib
              val a_xml_lang :
                Html_types.languagecode wrap -> [> `XML_lang ] attrib
              val a_lang : Html_types.languagecode wrap -> [> `Lang ] attrib
              val a_onabort : Xml.event_handler -> [> `OnAbort ] attrib
              val a_onafterprint :
                Xml.event_handler -> [> `OnAfterPrint ] attrib
              val a_onbeforeprint :
                Xml.event_handler -> [> `OnBeforePrint ] attrib
              val a_onbeforeunload :
                Xml.event_handler -> [> `OnBeforeUnload ] attrib
              val a_onblur : Xml.event_handler -> [> `OnBlur ] attrib
              val a_oncanplay : Xml.event_handler -> [> `OnCanPlay ] attrib
              val a_oncanplaythrough :
                Xml.event_handler -> [> `OnCanPlayThrough ] attrib
              val a_onchange : Xml.event_handler -> [> `OnChange ] attrib
              val a_ondurationchange :
                Xml.event_handler -> [> `OnDurationChange ] attrib
              val a_onemptied : Xml.event_handler -> [> `OnEmptied ] attrib
              val a_onended : Xml.event_handler -> [> `OnEnded ] attrib
              val a_onerror : Xml.event_handler -> [> `OnError ] attrib
              val a_onfocus : Xml.event_handler -> [> `OnFocus ] attrib
              val a_onformchange :
                Xml.event_handler -> [> `OnFormChange ] attrib
              val a_onforminput :
                Xml.event_handler -> [> `OnFormInput ] attrib
              val a_onhashchange :
                Xml.event_handler -> [> `OnHashChange ] attrib
              val a_oninput : Xml.event_handler -> [> `OnInput ] attrib
              val a_oninvalid : Xml.event_handler -> [> `OnInvalid ] attrib
              val a_onmousewheel :
                Xml.event_handler -> [> `OnMouseWheel ] attrib
              val a_onoffline : Xml.event_handler -> [> `OnOffLine ] attrib
              val a_ononline : Xml.event_handler -> [> `OnOnLine ] attrib
              val a_onpause : Xml.event_handler -> [> `OnPause ] attrib
              val a_onplay : Xml.event_handler -> [> `OnPlay ] attrib
              val a_onplaying : Xml.event_handler -> [> `OnPlaying ] attrib
              val a_onpagehide : Xml.event_handler -> [> `OnPageHide ] attrib
              val a_onpageshow : Xml.event_handler -> [> `OnPageShow ] attrib
              val a_onpopstate : Xml.event_handler -> [> `OnPopState ] attrib
              val a_onprogress : Xml.event_handler -> [> `OnProgress ] attrib
              val a_onratechange :
                Xml.event_handler -> [> `OnRateChange ] attrib
              val a_onreadystatechange :
                Xml.event_handler -> [> `OnReadyStateChange ] attrib
              val a_onredo : Xml.event_handler -> [> `OnRedo ] attrib
              val a_onresize : Xml.event_handler -> [> `OnResize ] attrib
              val a_onscroll : Xml.event_handler -> [> `OnScroll ] attrib
              val a_onseeked : Xml.event_handler -> [> `OnSeeked ] attrib
              val a_onseeking : Xml.event_handler -> [> `OnSeeking ] attrib
              val a_onselect : Xml.event_handler -> [> `OnSelect ] attrib
              val a_onshow : Xml.event_handler -> [> `OnShow ] attrib
              val a_onstalled : Xml.event_handler -> [> `OnStalled ] attrib
              val a_onstorage : Xml.event_handler -> [> `OnStorage ] attrib
              val a_onsubmit : Xml.event_handler -> [> `OnSubmit ] attrib
              val a_onsuspend : Xml.event_handler -> [> `OnSuspend ] attrib
              val a_ontimeupdate :
                Xml.event_handler -> [> `OnTimeUpdate ] attrib
              val a_onundo : Xml.event_handler -> [> `OnUndo ] attrib
              val a_onunload : Xml.event_handler -> [> `OnUnload ] attrib
              val a_onvolumechange :
                Xml.event_handler -> [> `OnVolumeChange ] attrib
              val a_onwaiting : Xml.event_handler -> [> `OnWaiting ] attrib
              val a_onload : Xml.event_handler -> [> `OnLoad ] attrib
              val a_onloadeddata :
                Xml.event_handler -> [> `OnLoadedData ] attrib
              val a_onloadedmetadata :
                Xml.event_handler -> [> `OnLoadedMetaData ] attrib
              val a_onloadstart :
                Xml.event_handler -> [> `OnLoadStart ] attrib
              val a_onmessage : Xml.event_handler -> [> `OnMessage ] attrib
              val a_onclick : Xml.mouse_event_handler -> [> `OnClick ] attrib
              val a_oncontextmenu :
                Xml.mouse_event_handler -> [> `OnContextMenu ] attrib
              val a_ondblclick :
                Xml.mouse_event_handler -> [> `OnDblClick ] attrib
              val a_ondrag : Xml.mouse_event_handler -> [> `OnDrag ] attrib
              val a_ondragend :
                Xml.mouse_event_handler -> [> `OnDragEnd ] attrib
              val a_ondragenter :
                Xml.mouse_event_handler -> [> `OnDragEnter ] attrib
              val a_ondragleave :
                Xml.mouse_event_handler -> [> `OnDragLeave ] attrib
              val a_ondragover :
                Xml.mouse_event_handler -> [> `OnDragOver ] attrib
              val a_ondragstart :
                Xml.mouse_event_handler -> [> `OnDragStart ] attrib
              val a_ondrop : Xml.mouse_event_handler -> [> `OnDrop ] attrib
              val a_onmousedown :
                Xml.mouse_event_handler -> [> `OnMouseDown ] attrib
              val a_onmouseup :
                Xml.mouse_event_handler -> [> `OnMouseUp ] attrib
              val a_onmouseover :
                Xml.mouse_event_handler -> [> `OnMouseOver ] attrib
              val a_onmousemove :
                Xml.mouse_event_handler -> [> `OnMouseMove ] attrib
              val a_onmouseout :
                Xml.mouse_event_handler -> [> `OnMouseOut ] attrib
              val a_ontouchstart :
                Xml.touch_event_handler -> [> `OnTouchStart ] attrib
              val a_ontouchend :
                Xml.touch_event_handler -> [> `OnTouchEnd ] attrib
              val a_ontouchmove :
                Xml.touch_event_handler -> [> `OnTouchMove ] attrib
              val a_ontouchcancel :
                Xml.touch_event_handler -> [> `OnTouchCancel ] attrib
              val a_onkeypress :
                Xml.keyboard_event_handler -> [> `OnKeyPress ] attrib
              val a_onkeydown :
                Xml.keyboard_event_handler -> [> `OnKeyDown ] attrib
              val a_onkeyup :
                Xml.keyboard_event_handler -> [> `OnKeyUp ] attrib
              val a_allowfullscreen : unit -> [> `Allowfullscreen ] attrib
              val a_allowpaymentrequest :
                unit -> [> `Allowpaymentrequest ] attrib
              val a_autocomplete : bool wrap -> [> `Autocomplete ] attrib
              val a_async : unit -> [> `Async ] attrib
              val a_autofocus : unit -> [> `Autofocus ] attrib
              val a_autoplay : unit -> [> `Autoplay ] attrib
              val a_muted : unit -> [> `Muted ] attrib
              val a_crossorigin :
                [< `Anonymous | `Use_credentials ] wrap ->
                [> `Crossorigin ] attrib
              val a_integrity : string wrap -> [> `Integrity ] attrib
              val a_mediagroup : string wrap -> [> `Mediagroup ] attrib
              val a_challenge :
                Html_types.text wrap -> [> `Challenge ] attrib
              val a_contenteditable :
                bool wrap -> [> `Contenteditable ] attrib
              val a_contextmenu :
                Html_types.idref wrap -> [> `Contextmenu ] attrib
              val a_controls : unit -> [> `Controls ] attrib
              val a_dir : [< `Ltr | `Rtl ] wrap -> [> `Dir ] attrib
              val a_draggable : bool wrap -> [> `Draggable ] attrib
              val a_form : Html_types.idref wrap -> [> `Form ] attrib
              val a_formaction : Xml.uri wrap -> [> `Formaction ] attrib
              val a_formenctype :
                Html_types.contenttype wrap -> [> `Formenctype ] attrib
              val a_formnovalidate : unit -> [> `Formnovalidate ] attrib
              val a_formtarget :
                Html_types.text wrap -> [> `Formtarget ] attrib
              val a_hidden : unit -> [> `Hidden ] attrib
              val a_high : Html_types.float_number wrap -> [> `High ] attrib
              val a_icon : Xml.uri wrap -> [> `Icon ] attrib
              val a_ismap : unit -> [> `Ismap ] attrib
              val a_keytype : Html_types.text wrap -> [> `Keytype ] attrib
              val a_list : Html_types.idref wrap -> [> `List ] attrib
              val a_loop : unit -> [> `Loop ] attrib
              val a_low : Html_types.float_number wrap -> [> `High ] attrib
              val a_max : Html_types.float_number wrap -> [> `Max ] attrib
              val a_input_max :
                Html_types.number_or_datetime wrap -> [> `Input_Max ] attrib
              val a_min : Html_types.float_number wrap -> [> `Min ] attrib
              val a_input_min :
                Html_types.number_or_datetime wrap -> [> `Input_Min ] attrib
              val a_inputmode :
                [< `Decimal
                 | `Email
                 | `None
                 | `Numeric
                 | `Search
                 | `Tel
                 | `Text
                 | `Url ]
                wrap -> [> `Inputmode ] attrib
              val a_novalidate : unit -> [> `Novalidate ] attrib
              val a_open : unit -> [> `Open ] attrib
              val a_optimum :
                Html_types.float_number wrap -> [> `Optimum ] attrib
              val a_pattern : Html_types.text wrap -> [> `Pattern ] attrib
              val a_placeholder :
                Html_types.text wrap -> [> `Placeholder ] attrib
              val a_poster : Xml.uri wrap -> [> `Poster ] attrib
              val a_preload :
                [< `Audio | `Metadata | `None ] wrap -> [> `Preload ] attrib
              val a_pubdate : unit -> [> `Pubdate ] attrib
              val a_radiogroup :
                Html_types.text wrap -> [> `Radiogroup ] attrib
              val a_referrerpolicy :
                Html_types.referrerpolicy wrap -> [> `Referrerpolicy ] attrib
              val a_required : unit -> [> `Required ] attrib
              val a_reversed : unit -> [> `Reversed ] attrib
              val a_sandbox :
                [< Html_types.sandbox_token ] list wrap ->
                [> `Sandbox ] attrib
              val a_spellcheck : bool wrap -> [> `Spellcheck ] attrib
              val a_scoped : unit -> [> `Scoped ] attrib
              val a_seamless : unit -> [> `Seamless ] attrib
              val a_sizes :
                (Html_types.number * Html_types.number) list option wrap ->
                [> `Sizes ] attrib
              val a_span : Html_types.number wrap -> [> `Span ] attrib
              val a_srclang :
                Html_types.nmtoken wrap -> [> `XML_lang ] attrib
              type image_candidate =
                  [ `Url of uri
                  | `Url_pixel of uri * Html_types.float_number
                  | `Url_width of uri * Html_types.number ]
              val a_srcset : image_candidate list wrap -> [> `Srcset ] attrib
              val a_img_sizes :
                Html_types.text list wrap -> [> `Img_sizes ] attrib
              val a_start : Html_types.number wrap -> [> `Start ] attrib
              val a_step :
                Html_types.float_number option wrap -> [> `Step ] attrib
              val a_translate :
                [< `No | `Yes ] wrap -> [> `Translate ] attrib
              val a_wrap : [< `Hard | `Soft ] wrap -> [> `Wrap ] attrib
              val a_version : Html_types.cdata wrap -> [> `Version ] attrib
              val a_xmlns :
                [< `W3_org_1999_xhtml ] wrap -> [> `XMLns ] attrib
              val a_manifest : Xml.uri wrap -> [> `Manifest ] attrib
              val a_cite : Xml.uri wrap -> [> `Cite ] attrib
              val a_xml_space :
                [< `Default | `Preserve ] wrap -> [> `XML_space ] attrib
              val a_accesskey :
                Html_types.character wrap -> [> `Accesskey ] attrib
              val a_charset : Html_types.charset wrap -> [> `Charset ] attrib
              val a_accept_charset :
                Html_types.charsets wrap -> [> `Accept_charset ] attrib
              val a_accept :
                Html_types.contenttypes wrap -> [> `Accept ] attrib
              val a_href : Xml.uri wrap -> [> `Href ] attrib
              val a_hreflang :
                Html_types.languagecode wrap -> [> `Hreflang ] attrib
              val a_download : string option wrap -> [> `Download ] attrib
              val a_rel : Html_types.linktypes wrap -> [> `Rel ] attrib
              val a_tabindex :
                Html_types.number wrap -> [> `Tabindex ] attrib
              val a_mime_type :
                Html_types.contenttype wrap -> [> `Mime_type ] attrib
              val a_datetime : Html_types.cdata wrap -> [> `Datetime ] attrib
              val a_action : Xml.uri wrap -> [> `Action ] attrib
              val a_checked : unit -> [> `Checked ] attrib
              val a_cols : Html_types.number wrap -> [> `Cols ] attrib
              val a_enctype :
                Html_types.contenttype wrap -> [> `Enctype ] attrib
              val a_label_for :
                Html_types.idref wrap -> [> `Label_for ] attrib
              val a_for : Html_types.idref wrap -> [> `Label_for ] attrib
              val a_output_for :
                Html_types.idrefs wrap -> [> `Output_for ] attrib
              val a_for_list :
                Html_types.idrefs wrap -> [> `Output_for ] attrib
              val a_maxlength :
                Html_types.number wrap -> [> `Maxlength ] attrib
              val a_minlength :
                Html_types.number wrap -> [> `Minlength ] attrib
              val a_method : [< `Get | `Post ] wrap -> [> `Method ] attrib
              val a_formmethod :
                [< `Get | `Post ] wrap -> [> `Method ] attrib
              val a_multiple : unit -> [> `Multiple ] attrib
              val a_name : Html_types.text wrap -> [> `Name ] attrib
              val a_rows : Html_types.number wrap -> [> `Rows ] attrib
              val a_selected : unit -> [> `Selected ] attrib
              val a_size : Html_types.number wrap -> [> `Size ] attrib
              val a_src : Xml.uri wrap -> [> `Src ] attrib
              val a_input_type :
                [< `Button
                 | `Checkbox
                 | `Color
                 | `Date
                 | `Datetime
                 | `Datetime_local
                 | `Email
                 | `File
                 | `Hidden
                 | `Image
                 | `Month
                 | `Number
                 | `Password
                 | `Radio
                 | `Range
                 | `Reset
                 | `Search
                 | `Submit
                 | `Tel
                 | `Text
                 | `Time
                 | `Url
                 | `Week ]
                wrap -> [> `Input_Type ] attrib
              val a_text_value :
                Html_types.text wrap -> [> `Text_Value ] attrib
              val a_int_value :
                Html_types.number wrap -> [> `Int_Value ] attrib
              val a_value : Html_types.cdata wrap -> [> `Value ] attrib
              val a_float_value :
                Html_types.float_number wrap -> [> `Float_Value ] attrib
              val a_disabled : unit -> [> `Disabled ] attrib
              val a_readonly : unit -> [> `ReadOnly ] attrib
              val a_button_type :
                [< `Button | `Reset | `Submit ] wrap ->
                [> `Button_Type ] attrib
              val a_command_type :
                [< `Checkbox | `Command | `Radio ] wrap ->
                [> `Command_Type ] attrib
              val a_menu_type :
                [< `Context | `Toolbar ] wrap -> [> `Menu_Type ] attrib
              val a_label : Html_types.text wrap -> [> `Label ] attrib
              val a_align :
                [< `Char | `Justify | `Left | `Right ] wrap ->
                [> `Align ] attrib
              val a_axis : Html_types.cdata wrap -> [> `Axis ] attrib
              val a_colspan : Html_types.number wrap -> [> `Colspan ] attrib
              val a_headers : Html_types.idrefs wrap -> [> `Headers ] attrib
              val a_rowspan : Html_types.number wrap -> [> `Rowspan ] attrib
              val a_scope :
                [< `Col | `Colgroup | `Row | `Rowgroup ] wrap ->
                [> `Scope ] attrib
              val a_summary : Html_types.text wrap -> [> `Summary ] attrib
              val a_border : Html_types.pixels wrap -> [> `Border ] attrib
              val a_rules :
                [< `All | `Cols | `Groups | `None | `Rows ] wrap ->
                [> `Rules ] attrib
              val a_char : Html_types.character wrap -> [> `Char ] attrib
              val a_alt : Html_types.text wrap -> [> `Alt ] attrib
              val a_height : Html_types.number wrap -> [> `Height ] attrib
              val a_width : Html_types.number wrap -> [> `Width ] attrib
              type shape = [ `Circle | `Default | `Poly | `Rect ]
              val a_shape : shape wrap -> [> `Shape ] attrib
              val a_coords : Html_types.numbers wrap -> [> `Coords ] attrib
              val a_usemap : Html_types.idref wrap -> [> `Usemap ] attrib
              val a_data : Xml.uri wrap -> [> `Data ] attrib
              val a_codetype :
                Html_types.contenttype wrap -> [> `Codetype ] attrib
              val a_frameborder :
                [< `One | `Zero ] wrap -> [> `Frameborder ] attrib
              val a_marginheight :
                Html_types.pixels wrap -> [> `Marginheight ] attrib
              val a_marginwidth :
                Html_types.pixels wrap -> [> `Marginwidth ] attrib
              val a_scrolling :
                [< `Auto | `No | `Yes ] wrap -> [> `Scrolling ] attrib
              val a_target :
                Html_types.frametarget wrap -> [> `Target ] attrib
              val a_content : Html_types.text wrap -> [> `Content ] attrib
              val a_http_equiv :
                Html_types.text wrap -> [> `Http_equiv ] attrib
              val a_defer : unit -> [> `Defer ] attrib
              val a_media : Html_types.mediadesc wrap -> [> `Media ] attrib
              val a_style : string wrap -> [> `Style_Attr ] attrib
              val a_property : string wrap -> [> `Property ] attrib
              val a_role : string list wrap -> [> `Role ] attrib
              val a_aria : string -> string list wrap -> [> `Aria ] attrib
              val txt : string wrap -> [> Html_types.txt ] elt
              val html :
                ?a:Html_types.html_attrib attrib list ->
                [< Html_types.head ] elt wrap ->
                [< Html_types.body ] elt wrap -> [> Html_types.html ] elt
              val head :
                ?a:Html_types.head_attrib attrib list ->
                [< Html_types.title ] elt wrap ->
                Html_types.head_content_fun elt list_wrap ->
                [> Html_types.head ] elt
              val base :
                ([< Html_types.base_attrib ], [> Html_types.base ]) nullary
              val title :
                (Html_types.title_attrib, [< Html_types.title_content_fun ],
                 [> Html_types.title ])
                unary
              val body :
                ([< Html_types.body_attrib ],
                 [< Html_types.body_content_fun ], [> Html_types.body ])
                star
              val svg :
                ?a:[< Html_types.svg_attrib ] Svg.F.Raw.attrib list ->
                [< Html_types.svg_content ] Svg.F.Raw.elt list_wrap ->
                [> Html_types.svg ] elt
              val footer :
                ([< Html_types.footer_attrib ],
                 [< Html_types.footer_content_fun ], [> Html_types.footer ])
                star
              val header :
                ([< Html_types.header_attrib ],
                 [< Html_types.header_content_fun ], [> Html_types.header ])
                star
              val section :
                ([< Html_types.section_attrib ],
                 [< Html_types.section_content_fun ],
                 [> Html_types.section ])
                star
              val nav :
                ([< Html_types.nav_attrib ], [< Html_types.nav_content_fun ],
                 [> Html_types.nav ])
                star
              val h1 :
                ([< Html_types.h1_attrib ], [< Html_types.h1_content_fun ],
                 [> Html_types.h1 ])
                star
              val h2 :
                ([< Html_types.h2_attrib ], [< Html_types.h2_content_fun ],
                 [> Html_types.h2 ])
                star
              val h3 :
                ([< Html_types.h3_attrib ], [< Html_types.h3_content_fun ],
                 [> Html_types.h3 ])
                star
              val h4 :
                ([< Html_types.h4_attrib ], [< Html_types.h4_content_fun ],
                 [> Html_types.h4 ])
                star
              val h5 :
                ([< Html_types.h5_attrib ], [< Html_types.h5_content_fun ],
                 [> Html_types.h5 ])
                star
              val h6 :
                ([< Html_types.h6_attrib ], [< Html_types.h6_content_fun ],
                 [> Html_types.h6 ])
                star
              val hgroup :
                ([< Html_types.hgroup_attrib ],
                 [< Html_types.hgroup_content_fun ], [> Html_types.hgroup ])
                star
              val address :
                ([< Html_types.address_attrib ],
                 [< Html_types.address_content_fun ],
                 [> Html_types.address ])
                star
              val article :
                ([< Html_types.article_attrib ],
                 [< Html_types.article_content_fun ],
                 [> Html_types.article ])
                star
              val aside :
                ([< Html_types.aside_attrib ],
                 [< Html_types.aside_content_fun ], [> Html_types.aside ])
                star
              val main :
                ([< Html_types.main_attrib ],
                 [< Html_types.main_content_fun ], [> Html_types.main ])
                star
              val p :
                ([< Html_types.p_attrib ], [< Html_types.p_content_fun ],
                 [> Html_types.p ])
                star
              val pre :
                ([< Html_types.pre_attrib ], [< Html_types.pre_content_fun ],
                 [> Html_types.pre ])
                star
              val blockquote :
                ([< Html_types.blockquote_attrib ],
                 [< Html_types.blockquote_content_fun ],
                 [> Html_types.blockquote ])
                star
              val div :
                ([< Html_types.div_attrib ], [< Html_types.div_content_fun ],
                 [> Html_types.div ])
                star
              val dl :
                ([< Html_types.dl_attrib ], [< Html_types.dl_content_fun ],
                 [> Html_types.dl ])
                star
              val ol :
                ([< Html_types.ol_attrib ], [< Html_types.ol_content_fun ],
                 [> Html_types.ol ])
                star
              val ul :
                ([< Html_types.ul_attrib ], [< Html_types.ul_content_fun ],
                 [> Html_types.ul ])
                star
              val dd :
                ([< Html_types.dd_attrib ], [< Html_types.dd_content_fun ],
                 [> Html_types.dd ])
                star
              val dt :
                ([< Html_types.dt_attrib ], [< Html_types.dt_content_fun ],
                 [> Html_types.dt ])
                star
              val li :
                ([< Html_types.li_attrib ], [< Html_types.li_content_fun ],
                 [> Html_types.li ])
                star
              val figcaption :
                ([< Html_types.figcaption_attrib ],
                 [< Html_types.figcaption_content_fun ],
                 [> Html_types.figcaption ])
                star
              val figure :
                ?figcaption:[ `Bottom of [< Html_types.figcaption ] elt wrap
                            | `Top of [< Html_types.figcaption ] elt wrap ] ->
                ([< Html_types.figure_attrib ],
                 [< Html_types.figure_content_fun ], [> Html_types.figure ])
                star
              val hr :
                ([< Html_types.hr_attrib ], [> Html_types.hr ]) nullary
              val b :
                ([< Html_types.b_attrib ], [< Html_types.b_content_fun ],
                 [> Html_types.b ])
                star
              val i :
                ([< Html_types.i_attrib ], [< Html_types.i_content_fun ],
                 [> Html_types.i ])
                star
              val u :
                ([< Html_types.u_attrib ], [< Html_types.u_content_fun ],
                 [> Html_types.u ])
                star
              val small :
                ([< Html_types.small_attrib ],
                 [< Html_types.small_content_fun ], [> Html_types.small ])
                star
              val sub :
                ([< Html_types.sub_attrib ], [< Html_types.sub_content_fun ],
                 [> Html_types.sub ])
                star
              val sup :
                ([< Html_types.sup_attrib ], [< Html_types.sup_content_fun ],
                 [> Html_types.sup ])
                star
              val mark :
                ([< Html_types.mark_attrib ],
                 [< Html_types.mark_content_fun ], [> Html_types.mark ])
                star
              val wbr :
                ([< Html_types.wbr_attrib ], [> Html_types.wbr ]) nullary
              val bdo :
                dir:[< `Ltr | `Rtl ] wrap ->
                ([< Html_types.bdo_attrib ], [< Html_types.bdo_content_fun ],
                 [> Html_types.bdo ])
                star
              val abbr :
                ([< Html_types.abbr_attrib ],
                 [< Html_types.abbr_content_fun ], [> Html_types.abbr ])
                star
              val br :
                ([< Html_types.br_attrib ], [> Html_types.br ]) nullary
              val cite :
                ([< Html_types.cite_attrib ],
                 [< Html_types.cite_content_fun ], [> Html_types.cite ])
                star
              val code :
                ([< Html_types.code_attrib ],
                 [< Html_types.code_content_fun ], [> Html_types.code ])
                star
              val dfn :
                ([< Html_types.dfn_attrib ], [< Html_types.dfn_content_fun ],
                 [> Html_types.dfn ])
                star
              val em :
                ([< Html_types.em_attrib ], [< Html_types.em_content_fun ],
                 [> Html_types.em ])
                star
              val kbd :
                ([< Html_types.kbd_attrib ], [< Html_types.kbd_content_fun ],
                 [> Html_types.kbd ])
                star
              val q :
                ([< Html_types.q_attrib ], [< Html_types.q_content_fun ],
                 [> Html_types.q ])
                star
              val samp :
                ([< Html_types.samp_attrib ],
                 [< Html_types.samp_content_fun ], [> Html_types.samp ])
                star
              val span :
                ([< Html_types.span_attrib ],
                 [< Html_types.span_content_fun ], [> Html_types.span ])
                star
              val strong :
                ([< Html_types.strong_attrib ],
                 [< Html_types.strong_content_fun ], [> Html_types.strong ])
                star
              val time :
                ([< Html_types.time_attrib ],
                 [< Html_types.time_content_fun ], [> Html_types.time ])
                star
              val var :
                ([< Html_types.var_attrib ], [< Html_types.var_content_fun ],
                 [> Html_types.var ])
                star
              val a :
                ([< Html_types.a_attrib ], 'a, [> 'Html_types.a ]) star
              val del :
                ([< Html_types.del_attrib ], 'a, [> 'Html_types.del ]) star
              val ins :
                ([< Html_types.ins_attrib ], 'a, [> 'Html_types.ins ]) star
              val img :
                src:Xml.uri wrap ->
                alt:Html_types.text wrap ->
                ([< Html_types.img_attrib ], [> Html_types.img ]) nullary
              val picture :
                img:[< Html_types.img ] elt wrap ->
                ([< Html_types.picture_attrib ],
                 [< Html_types.picture_content_fun ],
                 [> Html_types.picture ])
                star
              val iframe :
                ([< Html_types.iframe_attrib ],
                 [< Html_types.iframe_content_fun ], [> Html_types.iframe ])
                star
              val object_ :
                ?params:[< Html_types.param ] elt list_wrap ->
                ([< Html_types.object__attrib ], 'a, [> `Object of 'a ]) star
              val param :
                ([< Html_types.param_attrib ], [> Html_types.param ]) nullary
              val embed :
                ([< Html_types.embed_attrib ], [> Html_types.embed ]) nullary
              val audio :
                ?src:Xml.uri wrap ->
                ?srcs:[< Html_types.source ] elt list_wrap ->
                ([< Html_types.audio_attrib ], 'a, [> 'Html_types.audio ])
                star
              val video :
                ?src:Xml.uri wrap ->
                ?srcs:[< Html_types.source ] elt list_wrap ->
                ([< Html_types.video_attrib ], 'a, [> 'Html_types.video ])
                star
              val canvas :
                ([< Html_types.canvas_attrib ], 'a,
                 [> 'Html_types.canvas ])
                star
              val source :
                ([< Html_types.source_attrib ], [> Html_types.source ])
                nullary
              val area :
                alt:Html_types.text wrap ->
                ([< `Accesskey
                  | `Alt
                  | `Aria
                  | `Class
                  | `Contenteditable
                  | `Contextmenu
                  | `Coords
                  | `Dir
                  | `Draggable
                  | `Hidden
                  | `Hreflang
                  | `Id
                  | `Lang
                  | `Media
                  | `Mime_type
                  | `OnAbort
                  | `OnBlur
                  | `OnCanPlay
                  | `OnCanPlayThrough
                  | `OnChange
                  | `OnClick
                  | `OnContextMenu
                  | `OnDblClick
                  | `OnDrag
                  | `OnDragEnd
                  | `OnDragEnter
                  | `OnDragLeave
                  | `OnDragOver
                  | `OnDragStart
                  | `OnDrop
                  | `OnDurationChange
                  | `OnEmptied
                  | `OnEnded
                  | `OnError
                  | `OnFocus
                  | `OnFormChange
                  | `OnFormInput
                  | `OnInput
                  | `OnInvalid
                  | `OnKeyDown
                  | `OnKeyPress
                  | `OnKeyUp
                  | `OnLoad
                  | `OnLoadStart
                  | `OnLoadedData
                  | `OnLoadedMetaData
                  | `OnMouseDown
                  | `OnMouseMove
                  | `OnMouseOut
                  | `OnMouseOver
                  | `OnMouseUp
                  | `OnMouseWheel
                  | `OnPause
                  | `OnPlay
                  | `OnPlaying
                  | `OnProgress
                  | `OnRateChange
                  | `OnReadyStateChange
                  | `OnScroll
                  | `OnSeeked
                  | `OnSeeking
                  | `OnSelect
                  | `OnShow
                  | `OnStalled
                  | `OnSubmit
                  | `OnSuspend
                  | `OnTimeUpdate
                  | `OnTouchCancel
                  | `OnTouchEnd
                  | `OnTouchMove
                  | `OnTouchStart
                  | `OnVolumeChange
                  | `OnWaiting
                  | `Rel
                  | `Role
                  | `Shape
                  | `Spellcheck
                  | `Style_Attr
                  | `Tabindex
                  | `Target
                  | `Title
                  | `Translate
                  | `User_data
                  | `XML_lang
                  | `XMLns ],
                 [> Html_types.area ])
                nullary
              val map :
                ([< Html_types.map_attrib ], 'a, [> 'Html_types.map ]) star
              val caption :
                ([< Html_types.caption_attrib ],
                 [< Html_types.caption_content_fun ],
                 [> Html_types.caption ])
                star
              val table :
                ?caption:[< Html_types.caption ] elt wrap ->
                ?columns:[< Html_types.colgroup ] elt list_wrap ->
                ?thead:[< Html_types.thead ] elt wrap ->
                ?tfoot:[< Html_types.tfoot ] elt wrap ->
                ([< Html_types.table_attrib ],
                 [< Html_types.table_content_fun ], [> Html_types.table ])
                star
              val tablex :
                ?caption:[< Html_types.caption ] elt wrap ->
                ?columns:[< Html_types.colgroup ] elt list_wrap ->
                ?thead:[< Html_types.thead ] elt wrap ->
                ?tfoot:[< Html_types.tfoot ] elt wrap ->
                ([< Html_types.tablex_attrib ],
                 [< Html_types.tablex_content_fun ], [> Html_types.tablex ])
                star
              val colgroup :
                ([< Html_types.colgroup_attrib ],
                 [< Html_types.colgroup_content_fun ],
                 [> Html_types.colgroup ])
                star
              val col :
                ([< Html_types.col_attrib ], [> Html_types.col ]) nullary
              val thead :
                ([< Html_types.thead_attrib ],
                 [< Html_types.thead_content_fun ], [> Html_types.thead ])
                star
              val tbody :
                ([< Html_types.tbody_attrib ],
                 [< Html_types.tbody_content_fun ], [> Html_types.tbody ])
                star
              val tfoot :
                ([< Html_types.tfoot_attrib ],
                 [< Html_types.tfoot_content_fun ], [> Html_types.tfoot ])
                star
              val td :
                ([< Html_types.td_attrib ], [< Html_types.td_content_fun ],
                 [> Html_types.td ])
                star
              val th :
                ([< Html_types.th_attrib ], [< Html_types.th_content_fun ],
                 [> Html_types.th ])
                star
              val tr :
                ([< Html_types.tr_attrib ], [< Html_types.tr_content_fun ],
                 [> Html_types.tr ])
                star
              val form :
                ([< Html_types.form_attrib ],
                 [< Html_types.form_content_fun ], [> Html_types.form ])
                star
              val fieldset :
                ?legend:[< Html_types.legend ] elt wrap ->
                ([< Html_types.fieldset_attrib ],
                 [< Html_types.fieldset_content_fun ],
                 [> Html_types.fieldset ])
                star
              val legend :
                ([< Html_types.legend_attrib ],
                 [< Html_types.legend_content_fun ], [> Html_types.legend ])
                star
              val label :
                ([< Html_types.label_attrib ],
                 [< Html_types.label_content_fun ], [> Html_types.label ])
                star
              val input :
                ([< Html_types.input_attrib ], [> Html_types.input ]) nullary
              val button :
                ([< Html_types.button_attrib ],
                 [< Html_types.button_content_fun ], [> Html_types.button ])
                star
              val select :
                ([< Html_types.select_attrib ],
                 [< Html_types.select_content_fun ], [> Html_types.select ])
                star
              val datalist :
                ?children:[< `Options of
                               [< Html_types.selectoption ] elt list_wrap
                           | `Phras of [< Html_types.phrasing ] elt list_wrap
                          ] ->
                ([< Html_types.datalist_attrib ], [> Html_types.datalist ])
                nullary
              val optgroup :
                label:Html_types.text wrap ->
                ([< Html_types.optgroup_attrib ],
                 [< Html_types.optgroup_content_fun ],
                 [> Html_types.optgroup ])
                star
              val option :
                ([< Html_types.option_attrib ],
                 [< Html_types.option_content_fun ],
                 [> Html_types.selectoption ])
                unary
              val textarea :
                ([< Html_types.textarea_attrib ],
                 [< Html_types.textarea_content_fun ],
                 [> Html_types.textarea ])
                unary
              val keygen :
                ([< Html_types.keygen_attrib ], [> Html_types.keygen ])
                nullary
              val progress :
                ([< Html_types.progress_attrib ],
                 [< Html_types.progress_content_fun ],
                 [> Html_types.progress ])
                star
              val meter :
                ([< Html_types.meter_attrib ],
                 [< Html_types.meter_content_fun ], [> Html_types.meter ])
                star
              val output_elt :
                ([< Html_types.output_elt_attrib ],
                 [< Html_types.output_elt_content_fun ],
                 [> Html_types.output_elt ])
                star
              val entity : string -> [> Html_types.txt ] elt
              val space : unit -> [> Html_types.txt ] elt
              val cdata : string -> [> Html_types.txt ] elt
              val cdata_script : string -> [> Html_types.txt ] elt
              val cdata_style : string -> [> Html_types.txt ] elt
              val details :
                [< Html_types.summary ] elt wrap ->
                ([< Html_types.details_attrib ],
                 [< Html_types.details_content_fun ],
                 [> Html_types.details ])
                star
              val summary :
                ([< Html_types.summary_attrib ],
                 [< Html_types.summary_content_fun ],
                 [> Html_types.summary ])
                star
              val command :
                label:Html_types.text wrap ->
                ([< Html_types.command_attrib ], [> Html_types.command ])
                nullary
              val menu :
                ?children:[< `Flows of [< Html_types.flow5 ] elt list_wrap
                           | `Lis of
                               [< `Li of [< Html_types.common ] ] elt
                               list_wrap ] ->
                ([< Html_types.menu_attrib ], [> Html_types.menu ]) nullary
              val script :
                ([< Html_types.script_attrib ],
                 [< Html_types.script_content_fun ], [> Html_types.script ])
                unary
              val noscript :
                ([< Html_types.noscript_attrib ],
                 [< Html_types.noscript_content_fun ],
                 [> Html_types.noscript ])
                star
              val template :
                ([< Html_types.template_attrib ],
                 [< Html_types.template_content_fun ],
                 [> Html_types.template ])
                star
              val meta :
                ([< Html_types.meta_attrib ], [> Html_types.meta ]) nullary
              val style :
                ([< Html_types.style_attrib ],
                 [< Html_types.style_content_fun ], [> Html_types.style ])
                star
              val link :
                rel:Html_types.linktypes wrap ->
                href:Xml.uri wrap ->
                ([< Html_types.link_attrib ], [> Html_types.link ]) nullary
              val rt :
                ([< Html_types.rt_attrib ], [< Html_types.rt_content_fun ],
                 [> Html_types.rt ])
                star
              val rp :
                ([< Html_types.rp_attrib ], [< Html_types.rp_content_fun ],
                 [> Html_types.rp ])
                star
              val ruby :
                ([< Html_types.ruby_attrib ],
                 [< Html_types.ruby_content_fun ], [> Html_types.ruby ])
                star
              val pcdata : string wrap -> [> Html_types.pcdata ] elt
              val of_seq : Xml_stream.signal Seq.t -> 'a elt list_wrap
              val tot : Xml.elt -> 'a elt
              val totl : Xml.elt list_wrap -> 'a elt list_wrap
              val toelt : 'a elt -> Xml.elt
              val toeltl : 'a elt list_wrap -> Xml.elt list_wrap
              val doc_toelt : doc -> Xml.elt
              val to_xmlattribs : 'a attrib list -> Xml.attrib list
              val to_attrib : Xml.attrib -> 'a attrib
              module Unsafe :
                sig
                  val data : string wrap -> 'a elt
                  val node :
                    string -> ?a:'a attrib list -> 'b elt list_wrap -> 'c elt
                  val leaf : string -> ?a:'a attrib list -> unit -> 'b elt
                  val coerce_elt : 'a elt -> 'b elt
                  val string_attrib : string -> string wrap -> 'a attrib
                  val float_attrib : string -> float wrap -> 'a attrib
                  val int_attrib : string -> int wrap -> 'a attrib
                  val uri_attrib : string -> uri wrap -> 'a attrib
                  val space_sep_attrib :
                    string -> string list wrap -> 'a attrib
                  val comma_sep_attrib :
                    string -> string list wrap -> 'a attrib
                end
            end
          type 'a elt = 'a elt
          type doc = Html_types.html elt
          type 'a attrib = 'a attrib
          module Xml :
            sig
              module W :
                sig
                  type 'a t = 'Xml.W.t
                  val return : '-> 'a t
                  type ('a, 'b) ft = ('a, 'b) Xml.W.ft
                  val fmap : ('a, 'b) ft -> 'a t -> 'b t
                  type 'a tlist = 'Xml.W.tlist
                  val nil : unit -> 'a tlist
                  val singleton : 'a t -> 'a tlist
                  val cons : 'a t -> 'a tlist -> 'a tlist
                  val append : 'a tlist -> 'a tlist -> 'a tlist
                  val map : ('a, 'b) ft -> 'a tlist -> 'b tlist
                end
              type 'a wrap = 'W.t
              type 'a list_wrap = 'W.tlist
              type uri = Xml.uri
              val string_of_uri : (uri, string) W.ft
              val uri_of_string : (string, uri) W.ft
              type aname = string
              type event_handler = Xml.event_handler
              type mouse_event_handler = Xml.mouse_event_handler
              type keyboard_event_handler = Xml.keyboard_event_handler
              type touch_event_handler = Xml.touch_event_handler
              type attrib = Xml.attrib
              val float_attrib : aname -> float wrap -> attrib
              val int_attrib : aname -> int wrap -> attrib
              val string_attrib : aname -> string wrap -> attrib
              val space_sep_attrib : aname -> string list wrap -> attrib
              val comma_sep_attrib : aname -> string list wrap -> attrib
              val event_handler_attrib : aname -> event_handler -> attrib
              val mouse_event_handler_attrib :
                aname -> mouse_event_handler -> attrib
              val keyboard_event_handler_attrib :
                aname -> keyboard_event_handler -> attrib
              val touch_event_handler_attrib :
                aname -> touch_event_handler -> attrib
              val uri_attrib : aname -> uri wrap -> attrib
              val uris_attrib : aname -> uri list wrap -> attrib
              type elt = Xml.elt
              type ename = string
              val empty : unit -> elt
              val comment : string -> elt
              val pcdata : string wrap -> elt
              val encodedpcdata : string wrap -> elt
              val entity : string -> elt
              val leaf : ?a:attrib list -> ename -> elt
              val node : ?a:attrib list -> ename -> elt list_wrap -> elt
              val cdata : string -> elt
              val cdata_script : string -> elt
              val cdata_style : string -> elt
            end
          type 'a wrap = 'Xml.W.t
          type 'a list_wrap = 'Xml.W.tlist
          type ('a, 'b) nullary = ?a:'a attrib list -> unit -> 'b elt
          type ('a, 'b, 'c) unary =
              ?a:'a attrib list -> 'b elt wrap -> 'c elt
          type ('a, 'b, 'c) star =
              ?a:'a attrib list -> 'b elt list_wrap -> 'c elt
          module Info : Xml_sigs.Info
          type uri = Xml.uri
          val string_of_uri : (uri, string) Xml.W.ft
          val a_class : Html_types.nmtokens wrap -> [> `Class ] attrib
          val a_user_data :
            Html_types.nmtoken ->
            Html_types.text wrap -> [> `User_data ] attrib
          val a_id : Html_types.text wrap -> [> `Id ] attrib
          val a_title : Html_types.text wrap -> [> `Title ] attrib
          val a_xml_lang :
            Html_types.languagecode wrap -> [> `XML_lang ] attrib
          val a_lang : Html_types.languagecode wrap -> [> `Lang ] attrib
          val a_onabort : Xml.event_handler -> [> `OnAbort ] attrib
          val a_onafterprint : Xml.event_handler -> [> `OnAfterPrint ] attrib
          val a_onbeforeprint :
            Xml.event_handler -> [> `OnBeforePrint ] attrib
          val a_onbeforeunload :
            Xml.event_handler -> [> `OnBeforeUnload ] attrib
          val a_onblur : Xml.event_handler -> [> `OnBlur ] attrib
          val a_oncanplay : Xml.event_handler -> [> `OnCanPlay ] attrib
          val a_oncanplaythrough :
            Xml.event_handler -> [> `OnCanPlayThrough ] attrib
          val a_onchange : Xml.event_handler -> [> `OnChange ] attrib
          val a_ondurationchange :
            Xml.event_handler -> [> `OnDurationChange ] attrib
          val a_onemptied : Xml.event_handler -> [> `OnEmptied ] attrib
          val a_onended : Xml.event_handler -> [> `OnEnded ] attrib
          val a_onerror : Xml.event_handler -> [> `OnError ] attrib
          val a_onfocus : Xml.event_handler -> [> `OnFocus ] attrib
          val a_onformchange : Xml.event_handler -> [> `OnFormChange ] attrib
          val a_onforminput : Xml.event_handler -> [> `OnFormInput ] attrib
          val a_onhashchange : Xml.event_handler -> [> `OnHashChange ] attrib
          val a_oninput : Xml.event_handler -> [> `OnInput ] attrib
          val a_oninvalid : Xml.event_handler -> [> `OnInvalid ] attrib
          val a_onmousewheel : Xml.event_handler -> [> `OnMouseWheel ] attrib
          val a_onoffline : Xml.event_handler -> [> `OnOffLine ] attrib
          val a_ononline : Xml.event_handler -> [> `OnOnLine ] attrib
          val a_onpause : Xml.event_handler -> [> `OnPause ] attrib
          val a_onplay : Xml.event_handler -> [> `OnPlay ] attrib
          val a_onplaying : Xml.event_handler -> [> `OnPlaying ] attrib
          val a_onpagehide : Xml.event_handler -> [> `OnPageHide ] attrib
          val a_onpageshow : Xml.event_handler -> [> `OnPageShow ] attrib
          val a_onpopstate : Xml.event_handler -> [> `OnPopState ] attrib
          val a_onprogress : Xml.event_handler -> [> `OnProgress ] attrib
          val a_onratechange : Xml.event_handler -> [> `OnRateChange ] attrib
          val a_onreadystatechange :
            Xml.event_handler -> [> `OnReadyStateChange ] attrib
          val a_onredo : Xml.event_handler -> [> `OnRedo ] attrib
          val a_onresize : Xml.event_handler -> [> `OnResize ] attrib
          val a_onscroll : Xml.event_handler -> [> `OnScroll ] attrib
          val a_onseeked : Xml.event_handler -> [> `OnSeeked ] attrib
          val a_onseeking : Xml.event_handler -> [> `OnSeeking ] attrib
          val a_onselect : Xml.event_handler -> [> `OnSelect ] attrib
          val a_onshow : Xml.event_handler -> [> `OnShow ] attrib
          val a_onstalled : Xml.event_handler -> [> `OnStalled ] attrib
          val a_onstorage : Xml.event_handler -> [> `OnStorage ] attrib
          val a_onsubmit : Xml.event_handler -> [> `OnSubmit ] attrib
          val a_onsuspend : Xml.event_handler -> [> `OnSuspend ] attrib
          val a_ontimeupdate : Xml.event_handler -> [> `OnTimeUpdate ] attrib
          val a_onundo : Xml.event_handler -> [> `OnUndo ] attrib
          val a_onunload : Xml.event_handler -> [> `OnUnload ] attrib
          val a_onvolumechange :
            Xml.event_handler -> [> `OnVolumeChange ] attrib
          val a_onwaiting : Xml.event_handler -> [> `OnWaiting ] attrib
          val a_onload : Xml.event_handler -> [> `OnLoad ] attrib
          val a_onloadeddata : Xml.event_handler -> [> `OnLoadedData ] attrib
          val a_onloadedmetadata :
            Xml.event_handler -> [> `OnLoadedMetaData ] attrib
          val a_onloadstart : Xml.event_handler -> [> `OnLoadStart ] attrib
          val a_onmessage : Xml.event_handler -> [> `OnMessage ] attrib
          val a_onclick : Xml.mouse_event_handler -> [> `OnClick ] attrib
          val a_oncontextmenu :
            Xml.mouse_event_handler -> [> `OnContextMenu ] attrib
          val a_ondblclick :
            Xml.mouse_event_handler -> [> `OnDblClick ] attrib
          val a_ondrag : Xml.mouse_event_handler -> [> `OnDrag ] attrib
          val a_ondragend : Xml.mouse_event_handler -> [> `OnDragEnd ] attrib
          val a_ondragenter :
            Xml.mouse_event_handler -> [> `OnDragEnter ] attrib
          val a_ondragleave :
            Xml.mouse_event_handler -> [> `OnDragLeave ] attrib
          val a_ondragover :
            Xml.mouse_event_handler -> [> `OnDragOver ] attrib
          val a_ondragstart :
            Xml.mouse_event_handler -> [> `OnDragStart ] attrib
          val a_ondrop : Xml.mouse_event_handler -> [> `OnDrop ] attrib
          val a_onmousedown :
            Xml.mouse_event_handler -> [> `OnMouseDown ] attrib
          val a_onmouseup : Xml.mouse_event_handler -> [> `OnMouseUp ] attrib
          val a_onmouseover :
            Xml.mouse_event_handler -> [> `OnMouseOver ] attrib
          val a_onmousemove :
            Xml.mouse_event_handler -> [> `OnMouseMove ] attrib
          val a_onmouseout :
            Xml.mouse_event_handler -> [> `OnMouseOut ] attrib
          val a_ontouchstart :
            Xml.touch_event_handler -> [> `OnTouchStart ] attrib
          val a_ontouchend :
            Xml.touch_event_handler -> [> `OnTouchEnd ] attrib
          val a_ontouchmove :
            Xml.touch_event_handler -> [> `OnTouchMove ] attrib
          val a_ontouchcancel :
            Xml.touch_event_handler -> [> `OnTouchCancel ] attrib
          val a_onkeypress :
            Xml.keyboard_event_handler -> [> `OnKeyPress ] attrib
          val a_onkeydown :
            Xml.keyboard_event_handler -> [> `OnKeyDown ] attrib
          val a_onkeyup : Xml.keyboard_event_handler -> [> `OnKeyUp ] attrib
          val a_allowfullscreen : unit -> [> `Allowfullscreen ] attrib
          val a_allowpaymentrequest :
            unit -> [> `Allowpaymentrequest ] attrib
          val a_autocomplete : bool wrap -> [> `Autocomplete ] attrib
          val a_async : unit -> [> `Async ] attrib
          val a_autofocus : unit -> [> `Autofocus ] attrib
          val a_autoplay : unit -> [> `Autoplay ] attrib
          val a_muted : unit -> [> `Muted ] attrib
          val a_crossorigin :
            [< `Anonymous | `Use_credentials ] wrap ->
            [> `Crossorigin ] attrib
          val a_integrity : string wrap -> [> `Integrity ] attrib
          val a_mediagroup : string wrap -> [> `Mediagroup ] attrib
          val a_challenge : Html_types.text wrap -> [> `Challenge ] attrib
          val a_contenteditable : bool wrap -> [> `Contenteditable ] attrib
          val a_contextmenu :
            Html_types.idref wrap -> [> `Contextmenu ] attrib
          val a_controls : unit -> [> `Controls ] attrib
          val a_dir : [< `Ltr | `Rtl ] wrap -> [> `Dir ] attrib
          val a_draggable : bool wrap -> [> `Draggable ] attrib
          val a_form : Html_types.idref wrap -> [> `Form ] attrib
          val a_formaction : Xml.uri wrap -> [> `Formaction ] attrib
          val a_formenctype :
            Html_types.contenttype wrap -> [> `Formenctype ] attrib
          val a_formnovalidate : unit -> [> `Formnovalidate ] attrib
          val a_formtarget : Html_types.text wrap -> [> `Formtarget ] attrib
          val a_hidden : unit -> [> `Hidden ] attrib
          val a_high : Html_types.float_number wrap -> [> `High ] attrib
          val a_icon : Xml.uri wrap -> [> `Icon ] attrib
          val a_ismap : unit -> [> `Ismap ] attrib
          val a_keytype : Html_types.text wrap -> [> `Keytype ] attrib
          val a_list : Html_types.idref wrap -> [> `List ] attrib
          val a_loop : unit -> [> `Loop ] attrib
          val a_low : Html_types.float_number wrap -> [> `High ] attrib
          val a_max : Html_types.float_number wrap -> [> `Max ] attrib
          val a_input_max :
            Html_types.number_or_datetime wrap -> [> `Input_Max ] attrib
          val a_min : Html_types.float_number wrap -> [> `Min ] attrib
          val a_input_min :
            Html_types.number_or_datetime wrap -> [> `Input_Min ] attrib
          val a_inputmode :
            [< `Decimal
             | `Email
             | `None
             | `Numeric
             | `Search
             | `Tel
             | `Text
             | `Url ]
            wrap -> [> `Inputmode ] attrib
          val a_novalidate : unit -> [> `Novalidate ] attrib
          val a_open : unit -> [> `Open ] attrib
          val a_optimum :
            Html_types.float_number wrap -> [> `Optimum ] attrib
          val a_pattern : Html_types.text wrap -> [> `Pattern ] attrib
          val a_placeholder :
            Html_types.text wrap -> [> `Placeholder ] attrib
          val a_poster : Xml.uri wrap -> [> `Poster ] attrib
          val a_preload :
            [< `Audio | `Metadata | `None ] wrap -> [> `Preload ] attrib
          val a_pubdate : unit -> [> `Pubdate ] attrib
          val a_radiogroup : Html_types.text wrap -> [> `Radiogroup ] attrib
          val a_referrerpolicy :
            Html_types.referrerpolicy wrap -> [> `Referrerpolicy ] attrib
          val a_required : unit -> [> `Required ] attrib
          val a_reversed : unit -> [> `Reversed ] attrib
          val a_sandbox :
            [< Html_types.sandbox_token ] list wrap -> [> `Sandbox ] attrib
          val a_spellcheck : bool wrap -> [> `Spellcheck ] attrib
          val a_scoped : unit -> [> `Scoped ] attrib
          val a_seamless : unit -> [> `Seamless ] attrib
          val a_sizes :
            (Html_types.number * Html_types.number) list option wrap ->
            [> `Sizes ] attrib
          val a_span : Html_types.number wrap -> [> `Span ] attrib
          val a_srclang : Html_types.nmtoken wrap -> [> `XML_lang ] attrib
          type image_candidate =
              [ `Url of uri
              | `Url_pixel of uri * Html_types.float_number
              | `Url_width of uri * Html_types.number ]
          val a_srcset : image_candidate list wrap -> [> `Srcset ] attrib
          val a_img_sizes :
            Html_types.text list wrap -> [> `Img_sizes ] attrib
          val a_start : Html_types.number wrap -> [> `Start ] attrib
          val a_step :
            Html_types.float_number option wrap -> [> `Step ] attrib
          val a_translate : [< `No | `Yes ] wrap -> [> `Translate ] attrib
          val a_wrap : [< `Hard | `Soft ] wrap -> [> `Wrap ] attrib
          val a_version : Html_types.cdata wrap -> [> `Version ] attrib
          val a_xmlns : [< `W3_org_1999_xhtml ] wrap -> [> `XMLns ] attrib
          val a_manifest : Xml.uri wrap -> [> `Manifest ] attrib
          val a_cite : Xml.uri wrap -> [> `Cite ] attrib
          val a_xml_space :
            [< `Default | `Preserve ] wrap -> [> `XML_space ] attrib
          val a_accesskey :
            Html_types.character wrap -> [> `Accesskey ] attrib
          val a_charset : Html_types.charset wrap -> [> `Charset ] attrib
          val a_accept_charset :
            Html_types.charsets wrap -> [> `Accept_charset ] attrib
          val a_accept : Html_types.contenttypes wrap -> [> `Accept ] attrib
          val a_href : Xml.uri wrap -> [> `Href ] attrib
          val a_hreflang :
            Html_types.languagecode wrap -> [> `Hreflang ] attrib
          val a_download : string option wrap -> [> `Download ] attrib
          val a_rel : Html_types.linktypes wrap -> [> `Rel ] attrib
          val a_tabindex : Html_types.number wrap -> [> `Tabindex ] attrib
          val a_mime_type :
            Html_types.contenttype wrap -> [> `Mime_type ] attrib
          val a_datetime : Html_types.cdata wrap -> [> `Datetime ] attrib
          val a_action : Xml.uri wrap -> [> `Action ] attrib
          val a_checked : unit -> [> `Checked ] attrib
          val a_cols : Html_types.number wrap -> [> `Cols ] attrib
          val a_enctype : Html_types.contenttype wrap -> [> `Enctype ] attrib
          val a_label_for : Html_types.idref wrap -> [> `Label_for ] attrib
          val a_for : Html_types.idref wrap -> [> `Label_for ] attrib
          val a_output_for :
            Html_types.idrefs wrap -> [> `Output_for ] attrib
          val a_for_list : Html_types.idrefs wrap -> [> `Output_for ] attrib
          val a_maxlength : Html_types.number wrap -> [> `Maxlength ] attrib
          val a_minlength : Html_types.number wrap -> [> `Minlength ] attrib
          val a_method : [< `Get | `Post ] wrap -> [> `Method ] attrib
          val a_formmethod : [< `Get | `Post ] wrap -> [> `Method ] attrib
          val a_multiple : unit -> [> `Multiple ] attrib
          val a_name : Html_types.text wrap -> [> `Name ] attrib
          val a_rows : Html_types.number wrap -> [> `Rows ] attrib
          val a_selected : unit -> [> `Selected ] attrib
          val a_size : Html_types.number wrap -> [> `Size ] attrib
          val a_src : Xml.uri wrap -> [> `Src ] attrib
          val a_input_type :
            [< `Button
             | `Checkbox
             | `Color
             | `Date
             | `Datetime
             | `Datetime_local
             | `Email
             | `File
             | `Hidden
             | `Image
             | `Month
             | `Number
             | `Password
             | `Radio
             | `Range
             | `Reset
             | `Search
             | `Submit
             | `Tel
             | `Text
             | `Time
             | `Url
             | `Week ]
            wrap -> [> `Input_Type ] attrib
          val a_text_value : Html_types.text wrap -> [> `Text_Value ] attrib
          val a_int_value : Html_types.number wrap -> [> `Int_Value ] attrib
          val a_value : Html_types.cdata wrap -> [> `Value ] attrib
          val a_float_value :
            Html_types.float_number wrap -> [> `Float_Value ] attrib
          val a_disabled : unit -> [> `Disabled ] attrib
          val a_readonly : unit -> [> `ReadOnly ] attrib
          val a_button_type :
            [< `Button | `Reset | `Submit ] wrap -> [> `Button_Type ] attrib
          val a_command_type :
            [< `Checkbox | `Command | `Radio ] wrap ->
            [> `Command_Type ] attrib
          val a_menu_type :
            [< `Context | `Toolbar ] wrap -> [> `Menu_Type ] attrib
          val a_label : Html_types.text wrap -> [> `Label ] attrib
          val a_align :
            [< `Char | `Justify | `Left | `Right ] wrap -> [> `Align ] attrib
          val a_axis : Html_types.cdata wrap -> [> `Axis ] attrib
          val a_colspan : Html_types.number wrap -> [> `Colspan ] attrib
          val a_headers : Html_types.idrefs wrap -> [> `Headers ] attrib
          val a_rowspan : Html_types.number wrap -> [> `Rowspan ] attrib
          val a_scope :
            [< `Col | `Colgroup | `Row | `Rowgroup ] wrap ->
            [> `Scope ] attrib
          val a_summary : Html_types.text wrap -> [> `Summary ] attrib
          val a_border : Html_types.pixels wrap -> [> `Border ] attrib
          val a_rules :
            [< `All | `Cols | `Groups | `None | `Rows ] wrap ->
            [> `Rules ] attrib
          val a_char : Html_types.character wrap -> [> `Char ] attrib
          val a_alt : Html_types.text wrap -> [> `Alt ] attrib
          val a_height : Html_types.number wrap -> [> `Height ] attrib
          val a_width : Html_types.number wrap -> [> `Width ] attrib
          type shape = [ `Circle | `Default | `Poly | `Rect ]
          val a_shape : shape wrap -> [> `Shape ] attrib
          val a_coords : Html_types.numbers wrap -> [> `Coords ] attrib
          val a_usemap : Html_types.idref wrap -> [> `Usemap ] attrib
          val a_data : Xml.uri wrap -> [> `Data ] attrib
          val a_codetype :
            Html_types.contenttype wrap -> [> `Codetype ] attrib
          val a_frameborder :
            [< `One | `Zero ] wrap -> [> `Frameborder ] attrib
          val a_marginheight :
            Html_types.pixels wrap -> [> `Marginheight ] attrib
          val a_marginwidth :
            Html_types.pixels wrap -> [> `Marginwidth ] attrib
          val a_scrolling :
            [< `Auto | `No | `Yes ] wrap -> [> `Scrolling ] attrib
          val a_target : Html_types.frametarget wrap -> [> `Target ] attrib
          val a_content : Html_types.text wrap -> [> `Content ] attrib
          val a_http_equiv : Html_types.text wrap -> [> `Http_equiv ] attrib
          val a_defer : unit -> [> `Defer ] attrib
          val a_media : Html_types.mediadesc wrap -> [> `Media ] attrib
          val a_style : string wrap -> [> `Style_Attr ] attrib
          val a_property : string wrap -> [> `Property ] attrib
          val a_role : string list wrap -> [> `Role ] attrib
          val a_aria : string -> string list wrap -> [> `Aria ] attrib
          val txt : string wrap -> [> Html_types.txt ] elt
          val html :
            ?a:Html_types.html_attrib attrib list ->
            [< Html_types.head ] elt wrap ->
            [< Html_types.body ] elt wrap -> [> Html_types.html ] elt
          val head :
            ?a:Html_types.head_attrib attrib list ->
            [< Html_types.title ] elt wrap ->
            Html_types.head_content_fun elt list_wrap ->
            [> Html_types.head ] elt
          val base :
            ([< Html_types.base_attrib ], [> Html_types.base ]) nullary
          val title :
            (Html_types.title_attrib, [< Html_types.title_content_fun ],
             [> Html_types.title ])
            unary
          val body :
            ([< Html_types.body_attrib ], [< Html_types.body_content_fun ],
             [> Html_types.body ])
            star
          val svg :
            ?a:[< Html_types.svg_attrib ] Svg.F.Raw.attrib list ->
            [< Html_types.svg_content ] Svg.F.Raw.elt list_wrap ->
            [> Html_types.svg ] elt
          val footer :
            ([< Html_types.footer_attrib ],
             [< Html_types.footer_content_fun ], [> Html_types.footer ])
            star
          val header :
            ([< Html_types.header_attrib ],
             [< Html_types.header_content_fun ], [> Html_types.header ])
            star
          val section :
            ([< Html_types.section_attrib ],
             [< Html_types.section_content_fun ], [> Html_types.section ])
            star
          val nav :
            ([< Html_types.nav_attrib ], [< Html_types.nav_content_fun ],
             [> Html_types.nav ])
            star
          val h1 :
            ([< Html_types.h1_attrib ], [< Html_types.h1_content_fun ],
             [> Html_types.h1 ])
            star
          val h2 :
            ([< Html_types.h2_attrib ], [< Html_types.h2_content_fun ],
             [> Html_types.h2 ])
            star
          val h3 :
            ([< Html_types.h3_attrib ], [< Html_types.h3_content_fun ],
             [> Html_types.h3 ])
            star
          val h4 :
            ([< Html_types.h4_attrib ], [< Html_types.h4_content_fun ],
             [> Html_types.h4 ])
            star
          val h5 :
            ([< Html_types.h5_attrib ], [< Html_types.h5_content_fun ],
             [> Html_types.h5 ])
            star
          val h6 :
            ([< Html_types.h6_attrib ], [< Html_types.h6_content_fun ],
             [> Html_types.h6 ])
            star
          val hgroup :
            ([< Html_types.hgroup_attrib ],
             [< Html_types.hgroup_content_fun ], [> Html_types.hgroup ])
            star
          val address :
            ([< Html_types.address_attrib ],
             [< Html_types.address_content_fun ], [> Html_types.address ])
            star
          val article :
            ([< Html_types.article_attrib ],
             [< Html_types.article_content_fun ], [> Html_types.article ])
            star
          val aside :
            ([< Html_types.aside_attrib ], [< Html_types.aside_content_fun ],
             [> Html_types.aside ])
            star
          val main :
            ([< Html_types.main_attrib ], [< Html_types.main_content_fun ],
             [> Html_types.main ])
            star
          val p :
            ([< Html_types.p_attrib ], [< Html_types.p_content_fun ],
             [> Html_types.p ])
            star
          val pre :
            ([< Html_types.pre_attrib ], [< Html_types.pre_content_fun ],
             [> Html_types.pre ])
            star
          val blockquote :
            ([< Html_types.blockquote_attrib ],
             [< Html_types.blockquote_content_fun ],
             [> Html_types.blockquote ])
            star
          val div :
            ([< Html_types.div_attrib ], [< Html_types.div_content_fun ],
             [> Html_types.div ])
            star
          val dl :
            ([< Html_types.dl_attrib ], [< Html_types.dl_content_fun ],
             [> Html_types.dl ])
            star
          val ol :
            ([< Html_types.ol_attrib ], [< Html_types.ol_content_fun ],
             [> Html_types.ol ])
            star
          val ul :
            ([< Html_types.ul_attrib ], [< Html_types.ul_content_fun ],
             [> Html_types.ul ])
            star
          val dd :
            ([< Html_types.dd_attrib ], [< Html_types.dd_content_fun ],
             [> Html_types.dd ])
            star
          val dt :
            ([< Html_types.dt_attrib ], [< Html_types.dt_content_fun ],
             [> Html_types.dt ])
            star
          val li :
            ([< Html_types.li_attrib ], [< Html_types.li_content_fun ],
             [> Html_types.li ])
            star
          val figcaption :
            ([< Html_types.figcaption_attrib ],
             [< Html_types.figcaption_content_fun ],
             [> Html_types.figcaption ])
            star
          val figure :
            ?figcaption:[ `Bottom of [< Html_types.figcaption ] elt wrap
                        | `Top of [< Html_types.figcaption ] elt wrap ] ->
            ([< Html_types.figure_attrib ],
             [< Html_types.figure_content_fun ], [> Html_types.figure ])
            star
          val hr : ([< Html_types.hr_attrib ], [> Html_types.hr ]) nullary
          val b :
            ([< Html_types.b_attrib ], [< Html_types.b_content_fun ],
             [> Html_types.b ])
            star
          val i :
            ([< Html_types.i_attrib ], [< Html_types.i_content_fun ],
             [> Html_types.i ])
            star
          val u :
            ([< Html_types.u_attrib ], [< Html_types.u_content_fun ],
             [> Html_types.u ])
            star
          val small :
            ([< Html_types.small_attrib ], [< Html_types.small_content_fun ],
             [> Html_types.small ])
            star
          val sub :
            ([< Html_types.sub_attrib ], [< Html_types.sub_content_fun ],
             [> Html_types.sub ])
            star
          val sup :
            ([< Html_types.sup_attrib ], [< Html_types.sup_content_fun ],
             [> Html_types.sup ])
            star
          val mark :
            ([< Html_types.mark_attrib ], [< Html_types.mark_content_fun ],
             [> Html_types.mark ])
            star
          val wbr : ([< Html_types.wbr_attrib ], [> Html_types.wbr ]) nullary
          val bdo :
            dir:[< `Ltr | `Rtl ] wrap ->
            ([< Html_types.bdo_attrib ], [< Html_types.bdo_content_fun ],
             [> Html_types.bdo ])
            star
          val abbr :
            ([< Html_types.abbr_attrib ], [< Html_types.abbr_content_fun ],
             [> Html_types.abbr ])
            star
          val br : ([< Html_types.br_attrib ], [> Html_types.br ]) nullary
          val cite :
            ([< Html_types.cite_attrib ], [< Html_types.cite_content_fun ],
             [> Html_types.cite ])
            star
          val code :
            ([< Html_types.code_attrib ], [< Html_types.code_content_fun ],
             [> Html_types.code ])
            star
          val dfn :
            ([< Html_types.dfn_attrib ], [< Html_types.dfn_content_fun ],
             [> Html_types.dfn ])
            star
          val em :
            ([< Html_types.em_attrib ], [< Html_types.em_content_fun ],
             [> Html_types.em ])
            star
          val kbd :
            ([< Html_types.kbd_attrib ], [< Html_types.kbd_content_fun ],
             [> Html_types.kbd ])
            star
          val q :
            ([< Html_types.q_attrib ], [< Html_types.q_content_fun ],
             [> Html_types.q ])
            star
          val samp :
            ([< Html_types.samp_attrib ], [< Html_types.samp_content_fun ],
             [> Html_types.samp ])
            star
          val span :
            ([< Html_types.span_attrib ], [< Html_types.span_content_fun ],
             [> Html_types.span ])
            star
          val strong :
            ([< Html_types.strong_attrib ],
             [< Html_types.strong_content_fun ], [> Html_types.strong ])
            star
          val time :
            ([< Html_types.time_attrib ], [< Html_types.time_content_fun ],
             [> Html_types.time ])
            star
          val var :
            ([< Html_types.var_attrib ], [< Html_types.var_content_fun ],
             [> Html_types.var ])
            star
          val del :
            ([< Html_types.del_attrib ], 'a, [> 'Html_types.del ]) star
          val ins :
            ([< Html_types.ins_attrib ], 'a, [> 'Html_types.ins ]) star
          val img :
            src:Xml.uri wrap ->
            alt:Html_types.text wrap ->
            ([< Html_types.img_attrib ], [> Html_types.img ]) nullary
          val picture :
            img:[< Html_types.img ] elt wrap ->
            ([< Html_types.picture_attrib ],
             [< Html_types.picture_content_fun ], [> Html_types.picture ])
            star
          val iframe :
            ([< Html_types.iframe_attrib ],
             [< Html_types.iframe_content_fun ], [> Html_types.iframe ])
            star
          val object_ :
            ?params:[< Html_types.param ] elt list_wrap ->
            ([< Html_types.object__attrib ], 'a, [> `Object of 'a ]) star
          val param :
            ([< Html_types.param_attrib ], [> Html_types.param ]) nullary
          val embed :
            ([< Html_types.embed_attrib ], [> Html_types.embed ]) nullary
          val audio :
            ?src:Xml.uri wrap ->
            ?srcs:[< Html_types.source ] elt list_wrap ->
            ([< Html_types.audio_attrib ], 'a, [> 'Html_types.audio ]) star
          val video :
            ?src:Xml.uri wrap ->
            ?srcs:[< Html_types.source ] elt list_wrap ->
            ([< Html_types.video_attrib ], 'a, [> 'Html_types.video ]) star
          val canvas :
            ([< Html_types.canvas_attrib ], 'a, [> 'Html_types.canvas ])
            star
          val source :
            ([< Html_types.source_attrib ], [> Html_types.source ]) nullary
          val area :
            alt:Html_types.text wrap ->
            ([< `Accesskey
              | `Alt
              | `Aria
              | `Class
              | `Contenteditable
              | `Contextmenu
              | `Coords
              | `Dir
              | `Draggable
              | `Hidden
              | `Hreflang
              | `Id
              | `Lang
              | `Media
              | `Mime_type
              | `OnAbort
              | `OnBlur
              | `OnCanPlay
              | `OnCanPlayThrough
              | `OnChange
              | `OnClick
              | `OnContextMenu
              | `OnDblClick
              | `OnDrag
              | `OnDragEnd
              | `OnDragEnter
              | `OnDragLeave
              | `OnDragOver
              | `OnDragStart
              | `OnDrop
              | `OnDurationChange
              | `OnEmptied
              | `OnEnded
              | `OnError
              | `OnFocus
              | `OnFormChange
              | `OnFormInput
              | `OnInput
              | `OnInvalid
              | `OnKeyDown
              | `OnKeyPress
              | `OnKeyUp
              | `OnLoad
              | `OnLoadStart
              | `OnLoadedData
              | `OnLoadedMetaData
              | `OnMouseDown
              | `OnMouseMove
              | `OnMouseOut
              | `OnMouseOver
              | `OnMouseUp
              | `OnMouseWheel
              | `OnPause
              | `OnPlay
              | `OnPlaying
              | `OnProgress
              | `OnRateChange
              | `OnReadyStateChange
              | `OnScroll
              | `OnSeeked
              | `OnSeeking
              | `OnSelect
              | `OnShow
              | `OnStalled
              | `OnSubmit
              | `OnSuspend
              | `OnTimeUpdate
              | `OnTouchCancel
              | `OnTouchEnd
              | `OnTouchMove
              | `OnTouchStart
              | `OnVolumeChange
              | `OnWaiting
              | `Rel
              | `Role
              | `Shape
              | `Spellcheck
              | `Style_Attr
              | `Tabindex
              | `Target
              | `Title
              | `Translate
              | `User_data
              | `XML_lang
              | `XMLns ],
             [> Html_types.area ])
            nullary
          val map :
            ([< Html_types.map_attrib ], 'a, [> 'Html_types.map ]) star
          val caption :
            ([< Html_types.caption_attrib ],
             [< Html_types.caption_content_fun ], [> Html_types.caption ])
            star
          val table :
            ?caption:[< Html_types.caption ] elt wrap ->
            ?columns:[< Html_types.colgroup ] elt list_wrap ->
            ?thead:[< Html_types.thead ] elt wrap ->
            ?tfoot:[< Html_types.tfoot ] elt wrap ->
            ([< Html_types.table_attrib ], [< Html_types.table_content_fun ],
             [> Html_types.table ])
            star
          val tablex :
            ?caption:[< Html_types.caption ] elt wrap ->
            ?columns:[< Html_types.colgroup ] elt list_wrap ->
            ?thead:[< Html_types.thead ] elt wrap ->
            ?tfoot:[< Html_types.tfoot ] elt wrap ->
            ([< Html_types.tablex_attrib ],
             [< Html_types.tablex_content_fun ], [> Html_types.tablex ])
            star
          val colgroup :
            ([< Html_types.colgroup_attrib ],
             [< Html_types.colgroup_content_fun ], [> Html_types.colgroup ])
            star
          val col : ([< Html_types.col_attrib ], [> Html_types.col ]) nullary
          val thead :
            ([< Html_types.thead_attrib ], [< Html_types.thead_content_fun ],
             [> Html_types.thead ])
            star
          val tbody :
            ([< Html_types.tbody_attrib ], [< Html_types.tbody_content_fun ],
             [> Html_types.tbody ])
            star
          val tfoot :
            ([< Html_types.tfoot_attrib ], [< Html_types.tfoot_content_fun ],
             [> Html_types.tfoot ])
            star
          val td :
            ([< Html_types.td_attrib ], [< Html_types.td_content_fun ],
             [> Html_types.td ])
            star
          val th :
            ([< Html_types.th_attrib ], [< Html_types.th_content_fun ],
             [> Html_types.th ])
            star
          val tr :
            ([< Html_types.tr_attrib ], [< Html_types.tr_content_fun ],
             [> Html_types.tr ])
            star
          val form :
            ([< Html_types.form_attrib ], [< Html_types.form_content_fun ],
             [> Html_types.form ])
            star
          val fieldset :
            ?legend:[< Html_types.legend ] elt wrap ->
            ([< Html_types.fieldset_attrib ],
             [< Html_types.fieldset_content_fun ], [> Html_types.fieldset ])
            star
          val legend :
            ([< Html_types.legend_attrib ],
             [< Html_types.legend_content_fun ], [> Html_types.legend ])
            star
          val label :
            ([< Html_types.label_attrib ], [< Html_types.label_content_fun ],
             [> Html_types.label ])
            star
          val input :
            ([< Html_types.input_attrib ], [> Html_types.input ]) nullary
          val button :
            ([< Html_types.button_attrib ],
             [< Html_types.button_content_fun ], [> Html_types.button ])
            star
          val select :
            ([< Html_types.select_attrib ],
             [< Html_types.select_content_fun ], [> Html_types.select ])
            star
          val datalist :
            ?children:[< `Options of
                           [< Html_types.selectoption ] elt list_wrap
                       | `Phras of [< Html_types.phrasing ] elt list_wrap ] ->
            ([< Html_types.datalist_attrib ], [> Html_types.datalist ])
            nullary
          val optgroup :
            label:Html_types.text wrap ->
            ([< Html_types.optgroup_attrib ],
             [< Html_types.optgroup_content_fun ], [> Html_types.optgroup ])
            star
          val option :
            ([< Html_types.option_attrib ],
             [< Html_types.option_content_fun ],
             [> Html_types.selectoption ])
            unary
          val textarea :
            ([< Html_types.textarea_attrib ],
             [< Html_types.textarea_content_fun ], [> Html_types.textarea ])
            unary
          val keygen :
            ([< Html_types.keygen_attrib ], [> Html_types.keygen ]) nullary
          val progress :
            ([< Html_types.progress_attrib ],
             [< Html_types.progress_content_fun ], [> Html_types.progress ])
            star
          val meter :
            ([< Html_types.meter_attrib ], [< Html_types.meter_content_fun ],
             [> Html_types.meter ])
            star
          val output_elt :
            ([< Html_types.output_elt_attrib ],
             [< Html_types.output_elt_content_fun ],
             [> Html_types.output_elt ])
            star
          val entity : string -> [> Html_types.txt ] elt
          val space : unit -> [> Html_types.txt ] elt
          val cdata : string -> [> Html_types.txt ] elt
          val cdata_script : string -> [> Html_types.txt ] elt
          val cdata_style : string -> [> Html_types.txt ] elt
          val details :
            [< Html_types.summary ] elt wrap ->
            ([< Html_types.details_attrib ],
             [< Html_types.details_content_fun ], [> Html_types.details ])
            star
          val summary :
            ([< Html_types.summary_attrib ],
             [< Html_types.summary_content_fun ], [> Html_types.summary ])
            star
          val command :
            label:Html_types.text wrap ->
            ([< Html_types.command_attrib ], [> Html_types.command ]) nullary
          val menu :
            ?children:[< `Flows of [< Html_types.flow5 ] elt list_wrap
                       | `Lis of
                           [< `Li of [< Html_types.common ] ] elt list_wrap ] ->
            ([< Html_types.menu_attrib ], [> Html_types.menu ]) nullary
          val script :
            ([< Html_types.script_attrib ],
             [< Html_types.script_content_fun ], [> Html_types.script ])
            unary
          val noscript :
            ([< Html_types.noscript_attrib ],
             [< Html_types.noscript_content_fun ], [> Html_types.noscript ])
            star
          val template :
            ([< Html_types.template_attrib ],
             [< Html_types.template_content_fun ], [> Html_types.template ])
            star
          val meta :
            ([< Html_types.meta_attrib ], [> Html_types.meta ]) nullary
          val style :
            ([< Html_types.style_attrib ], [< Html_types.style_content_fun ],
             [> Html_types.style ])
            star
          val link :
            rel:Html_types.linktypes wrap ->
            href:Xml.uri wrap ->
            ([< Html_types.link_attrib ], [> Html_types.link ]) nullary
          val rt :
            ([< Html_types.rt_attrib ], [< Html_types.rt_content_fun ],
             [> Html_types.rt ])
            star
          val rp :
            ([< Html_types.rp_attrib ], [< Html_types.rp_content_fun ],
             [> Html_types.rp ])
            star
          val ruby :
            ([< Html_types.ruby_attrib ], [< Html_types.ruby_content_fun ],
             [> Html_types.ruby ])
            star
          val pcdata : string wrap -> [> Html_types.pcdata ] elt
          val of_seq : Xml_stream.signal Seq.t -> 'a elt list_wrap
          val tot : Xml.elt -> 'a elt
          val totl : Xml.elt list_wrap -> 'a elt list_wrap
          val toelt : 'a elt -> Xml.elt
          val toeltl : 'a elt list_wrap -> Xml.elt list_wrap
          val doc_toelt : doc -> Xml.elt
          val to_xmlattribs : 'a attrib list -> Xml.attrib list
          val to_attrib : Xml.attrib -> 'a attrib
          module Unsafe :
            sig
              val data : string wrap -> 'a elt
              val node :
                string -> ?a:'a attrib list -> 'b elt list_wrap -> 'c elt
              val leaf : string -> ?a:'a attrib list -> unit -> 'b elt
              val coerce_elt : 'a elt -> 'b elt
              val string_attrib : string -> string wrap -> 'a attrib
              val float_attrib : string -> float wrap -> 'a attrib
              val int_attrib : string -> int wrap -> 'a attrib
              val uri_attrib : string -> uri wrap -> 'a attrib
              val space_sep_attrib : string -> string list wrap -> 'a attrib
              val comma_sep_attrib : string -> string list wrap -> 'a attrib
            end
          type ('a, 'b, 'c) lazy_star =
              ?a:'a attrib list -> 'b elt list Eliom_lazy.request -> 'c elt
          val lazy_form :
            ([< Html_types.form_attrib ], [< Html_types.form_content_fun ],
             [> Html_types.form ])
            lazy_star
          val make_uri :
            ?absolute:bool ->
            ?absolute_path:bool ->
            ?https:bool ->
            service:('get, unit, Eliom_service.get, 'a, 'b, 'c, 'd,
                     [< `WithSuffix | `WithoutSuffix ], 'e, unit, 'f)
                    Eliom_service.t ->
            ?hostname:string ->
            ?port:int ->
            ?fragment:string ->
            ?keep_nl_params:[ `All | `None | `Persistent ] ->
            ?nl_params:Eliom_parameter.nl_params_set -> 'get -> uri
          val uri_of_string : (unit -> string) -> uri
          val css_link :
            ?a:[< Html_types.link_attrib ] attrib list ->
            uri:uri -> unit -> [> Html_types.link ] elt
          val js_script :
            ?a:[< Html_types.script_attrib ] attrib list ->
            uri:uri -> unit -> [> Html_types.script ] elt
          val a :
            ?absolute:bool ->
            ?absolute_path:bool ->
            ?https:bool ->
            ?a:[< Html_types.a_attrib ] attrib list ->
            service:('get, unit, Eliom_service.get, 'b, 'c, 'd, 'e,
                     [< `WithSuffix | `WithoutSuffix ], 'f, unit,
                     Eliom_service.non_ocaml)
                    Eliom_service.t ->
            ?hostname:string ->
            ?port:int ->
            ?fragment:string ->
            ?keep_nl_params:[ `All | `None | `Persistent ] ->
            ?nl_params:Eliom_parameter.nl_params_set ->
            ?xhr:bool -> 'a elt list -> 'get -> [> 'Html_types.a ] elt
          module Form :
            sig
              type 'a param = 'a form_param
              val float : float param
              val int : int param
              val int32 : int32 param
              val int64 : int64 param
              val nativeint : nativeint param
              val bool : bool param
              val string : string param
              val user : ('-> string) -> 'a param
              val make_post_uri_components :
                ?absolute:bool ->
                ?absolute_path:bool ->
                ?https:bool ->
                service:('get, 'post, Eliom_service.post, 'a, 'b, 'c, 'd,
                         [< `WithSuffix | `WithoutSuffix ], 'e, 'f, 'g)
                        Eliom_service.t ->
                ?hostname:string ->
                ?port:int ->
                ?fragment:string ->
                ?keep_nl_params:[ `All | `None | `Persistent ] ->
                ?nl_params:Eliom_parameter.nl_params_set ->
                ?keep_get_na_params:bool ->
                'get ->
                'post ->
                string * (string * Eliommod_parameters.param) list *
                string option * (string * Eliommod_parameters.param) list
              val get_form :
                ?absolute:bool ->
                ?absolute_path:bool ->
                ?https:bool ->
                ?a:[< Html_types.form_attrib ] attrib list ->
                service:('a, unit, Eliom_service.get, 'b, 'c, 'd, 'e,
                         [< `WithSuffix | `WithoutSuffix ], 'gn, 'f,
                         Eliom_service.non_ocaml)
                        Eliom_service.t ->
                ?hostname:string ->
                ?port:int ->
                ?fragment:string ->
                ?keep_nl_params:[ `All | `None | `Persistent ] ->
                ?nl_params:Eliom_parameter.nl_params_set ->
                ?xhr:bool ->
                ('gn -> [< Html_types.form_content ] elt list) ->
                [> Html_types.form ] elt
              val lwt_get_form :
                ?absolute:bool ->
                ?absolute_path:bool ->
                ?https:bool ->
                ?a:[< Html_types.form_attrib ] attrib list ->
                service:('a, unit, Eliom_service.get, 'b, 'c, 'd, 'e,
                         [< `WithSuffix | `WithoutSuffix ], 'gn, 'f,
                         Eliom_service.non_ocaml)
                        Eliom_service.t ->
                ?hostname:string ->
                ?port:int ->
                ?fragment:string ->
                ?keep_nl_params:[ `All | `None | `Persistent ] ->
                ?nl_params:Eliom_parameter.nl_params_set ->
                ?xhr:bool ->
                ('gn -> [< Html_types.form_content ] elt list Lwt.t) ->
                [> Html_types.form ] elt Lwt.t
              val post_form :
                ?absolute:bool ->
                ?absolute_path:bool ->
                ?https:bool ->
                ?a:[< Html_types.form_attrib ] attrib list ->
                service:('get, 'a, Eliom_service.post, 'b, 'c, 'd, 'e,
                         [< `WithSuffix | `WithoutSuffix ], 'f, 'pn,
                         Eliom_service.non_ocaml)
                        Eliom_service.t ->
                ?hostname:string ->
                ?port:int ->
                ?fragment:string ->
                ?keep_nl_params:[ `All | `None | `Persistent ] ->
                ?keep_get_na_params:bool ->
                ?nl_params:Eliom_parameter.nl_params_set ->
                ?xhr:bool ->
                ('pn -> [< Html_types.form_content ] elt list) ->
                'get -> [> Html_types.form ] elt
              val lwt_post_form :
                ?absolute:bool ->
                ?absolute_path:bool ->
                ?https:bool ->
                ?a:[< Html_types.form_attrib ] attrib list ->
                service:('get, 'a, Eliom_service.post, 'b, 'c, 'd, 'e,
                         [< `WithSuffix | `WithoutSuffix ], 'f, 'pn,
                         Eliom_service.non_ocaml)
                        Eliom_service.t ->
                ?hostname:string ->
                ?port:int ->
                ?fragment:string ->
                ?keep_nl_params:[ `All | `None | `Persistent ] ->
                ?keep_get_na_params:bool ->
                ?nl_params:Eliom_parameter.nl_params_set ->
                ?xhr:bool ->
                ('pn -> [< Html_types.form_content ] elt list Lwt.t) ->
                'get -> [> Html_types.form ] elt Lwt.t
              val input :
                ?a:[< Html_types.input_attrib ] attrib list ->
                input_type:[< Html_types.input_type ] ->
                ?name:[< 'Eliom_parameter.setoneradio ]
                      Eliom_parameter.param_name ->
                ?value:'-> 'a param -> [> Html_types.input ] elt
              val file_input :
                ?a:[< Html_types.input_attrib ] attrib list ->
                name:[< Eliom_lib.file_info Eliom_parameter.setoneradio ]
                     Eliom_parameter.param_name ->
                unit -> [> Html_types.input ] elt
              val image_input :
                ?a:[< Html_types.input_attrib ] attrib list ->
                name:[< Eliom_parameter.coordinates Eliom_parameter.oneradio
                     ] Eliom_parameter.param_name ->
                ?src:uri -> unit -> [> Html_types.input ] elt
              val checkbox :
                ?a:[< Html_types.input_attrib ] attrib list ->
                ?checked:bool ->
                name:[ `Set of 'a ] Eliom_parameter.param_name ->
                value:'-> 'a param -> [> Html_types.input ] elt
              val bool_checkbox_one :
                ?a:[< Html_types.input_attrib ] attrib list ->
                ?checked:bool ->
                name:[ `One of bool ] Eliom_parameter.param_name ->
                unit -> [> Html_types.input ] elt
              val radio :
                ?a:[< Html_types.input_attrib ] attrib list ->
                ?checked:bool ->
                name:[ `Radio of 'a ] Eliom_parameter.param_name ->
                value:'-> 'a param -> [> Html_types.input ] elt
              val string_radio_required :
                ?a:[< Html_types.input_attrib ] attrib list ->
                ?checked:bool ->
                name:[ `One of string ] Eliom_parameter.param_name ->
                value:string -> unit -> [> Html_types.input ] elt
              val button :
                ?a:[< Html_types.button_attrib ] attrib list ->
                button_type:[< Eliom_form_sigs.button_type ] ->
                name:[< 'Eliom_parameter.setone ]
                     Eliom_parameter.param_name ->
                value:'->
                'a param ->
                Html_types.button_content elt list ->
                [> Html_types.button ] elt
              val button_no_value :
                ?a:[< Html_types.button_attrib ] attrib list ->
                button_type:[< Eliom_form_sigs.button_type ] ->
                Html_types.button_content elt list ->
                [> Html_types.button ] elt
              val textarea :
                ?a:[< Html_types.textarea_attrib ] attrib list ->
                name:[< string Eliom_parameter.setoneradio ]
                     Eliom_parameter.param_name ->
                ?value:string -> unit -> [> Html_types.textarea ] elt
              type 'a soption =
                  Html_types.option_attrib attrib list * 'a *
                  Html_types.pcdata elt option * bool
              type 'a select_opt =
                  Optgroup of
                    [ `Accesskey
                    | `Aria
                    | `Class
                    | `Contenteditable
                    | `Contextmenu
                    | `Dir
                    | `Disabled
                    | `Draggable
                    | `Hidden
                    | `Id
                    | `Lang
                    | `OnAbort
                    | `OnBlur
                    | `OnCanPlay
                    | `OnCanPlayThrough
                    | `OnChange
                    | `OnClick
                    | `OnContextMenu
                    | `OnDblClick
                    | `OnDrag
                    | `OnDragEnd
                    | `OnDragEnter
                    | `OnDragLeave
                    | `OnDragOver
                    | `OnDragStart
                    | `OnDrop
                    | `OnDurationChange
                    | `OnEmptied
                    | `OnEnded
                    | `OnError
                    | `OnFocus
                    | `OnFormChange
                    | `OnFormInput
                    | `OnInput
                    | `OnInvalid
                    | `OnKeyDown
                    | `OnKeyPress
                    | `OnKeyUp
                    | `OnLoad
                    | `OnLoadStart
                    | `OnLoadedData
                    | `OnLoadedMetaData
                    | `OnMouseDown
                    | `OnMouseMove
                    | `OnMouseOut
                    | `OnMouseOver
                    | `OnMouseUp
                    | `OnMouseWheel
                    | `OnPause
                    | `OnPlay
                    | `OnPlaying
                    | `OnProgress
                    | `OnRateChange
                    | `OnReadyStateChange
                    | `OnScroll
                    | `OnSeeked
                    | `OnSeeking
                    | `OnSelect
                    | `OnShow
                    | `OnStalled
                    | `OnSubmit
                    | `OnSuspend
                    | `OnTimeUpdate
                    | `OnTouchCancel
                    | `OnTouchEnd
                    | `OnTouchMove
                    | `OnTouchStart
                    | `OnVolumeChange
                    | `OnWaiting
                    | `Role
                    | `Spellcheck
                    | `Style_Attr
                    | `Tabindex
                    | `Title
                    | `Translate
                    | `User_data
                    | `XML_lang
                    | `XMLns ] attrib list * string * 'a soption *
                    'a soption list
                | Option of 'a soption
              val select :
                ?a:[< Html_types.select_attrib ] attrib list ->
                ?required:Html_types.pcdata elt ->
                name:[ `One of 'a ] Eliom_parameter.param_name ->
                'a param ->
                'a select_opt ->
                'a select_opt list -> [> Html_types.select ] elt
              val multiple_select :
                ?a:[< Html_types.select_attrib ] attrib list ->
                ?required:Html_types.pcdata elt ->
                name:[ `Set of 'a ] Eliom_parameter.param_name ->
                'a param ->
                'a select_opt ->
                'a select_opt list -> [> Html_types.select ] elt
            end
        end
      module D :
        sig
          module Raw :
            sig
              type 'a elt = 'a elt
              type doc = Html_types.html elt
              type 'a attrib = 'a attrib
              module Xml :
                sig
                  module W :
                    sig
                      type 'a t = 'Xml.W.t
                      val return : '-> 'a t
                      type ('a, 'b) ft = ('a, 'b) Xml.W.ft
                      val fmap : ('a, 'b) ft -> 'a t -> 'b t
                      type 'a tlist = 'Xml.W.tlist
                      val nil : unit -> 'a tlist
                      val singleton : 'a t -> 'a tlist
                      val cons : 'a t -> 'a tlist -> 'a tlist
                      val append : 'a tlist -> 'a tlist -> 'a tlist
                      val map : ('a, 'b) ft -> 'a tlist -> 'b tlist
                    end
                  type 'a wrap = 'W.t
                  type 'a list_wrap = 'W.tlist
                  type uri = Xml.uri
                  val string_of_uri : (uri, string) W.ft
                  val uri_of_string : (string, uri) W.ft
                  type aname = string
                  type event_handler = Xml.event_handler
                  type mouse_event_handler = Xml.mouse_event_handler
                  type keyboard_event_handler = Xml.keyboard_event_handler
                  type touch_event_handler = Xml.touch_event_handler
                  type attrib = Xml.attrib
                  val float_attrib : aname -> float wrap -> attrib
                  val int_attrib : aname -> int wrap -> attrib
                  val string_attrib : aname -> string wrap -> attrib
                  val space_sep_attrib : aname -> string list wrap -> attrib
                  val comma_sep_attrib : aname -> string list wrap -> attrib
                  val event_handler_attrib : aname -> event_handler -> attrib
                  val mouse_event_handler_attrib :
                    aname -> mouse_event_handler -> attrib
                  val keyboard_event_handler_attrib :
                    aname -> keyboard_event_handler -> attrib
                  val touch_event_handler_attrib :
                    aname -> touch_event_handler -> attrib
                  val uri_attrib : aname -> uri wrap -> attrib
                  val uris_attrib : aname -> uri list wrap -> attrib
                  type elt = Xml.elt
                  type ename = string
                  val empty : unit -> elt
                  val comment : string -> elt
                  val pcdata : string wrap -> elt
                  val encodedpcdata : string wrap -> elt
                  val entity : string -> elt
                  val leaf : ?a:attrib list -> ename -> elt
                  val node : ?a:attrib list -> ename -> elt list_wrap -> elt
                  val cdata : string -> elt
                  val cdata_script : string -> elt
                  val cdata_style : string -> elt
                end
              type 'a wrap = 'Xml.W.t
              type 'a list_wrap = 'Xml.W.tlist
              type ('a, 'b) nullary = ?a:'a attrib list -> unit -> 'b elt
              type ('a, 'b, 'c) unary =
                  ?a:'a attrib list -> 'b elt wrap -> 'c elt
              type ('a, 'b, 'c) star =
                  ?a:'a attrib list -> 'b elt list_wrap -> 'c elt
              module Info : Xml_sigs.Info
              type uri = Xml.uri
              val string_of_uri : (uri, string) Xml.W.ft
              val uri_of_string : (string, uri) Xml.W.ft
              val a_class : Html_types.nmtokens wrap -> [> `Class ] attrib
              val a_user_data :
                Html_types.nmtoken ->
                Html_types.text wrap -> [> `User_data ] attrib
              val a_id : Html_types.text wrap -> [> `Id ] attrib
              val a_title : Html_types.text wrap -> [> `Title ] attrib
              val a_xml_lang :
                Html_types.languagecode wrap -> [> `XML_lang ] attrib
              val a_lang : Html_types.languagecode wrap -> [> `Lang ] attrib
              val a_onabort : Xml.event_handler -> [> `OnAbort ] attrib
              val a_onafterprint :
                Xml.event_handler -> [> `OnAfterPrint ] attrib
              val a_onbeforeprint :
                Xml.event_handler -> [> `OnBeforePrint ] attrib
              val a_onbeforeunload :
                Xml.event_handler -> [> `OnBeforeUnload ] attrib
              val a_onblur : Xml.event_handler -> [> `OnBlur ] attrib
              val a_oncanplay : Xml.event_handler -> [> `OnCanPlay ] attrib
              val a_oncanplaythrough :
                Xml.event_handler -> [> `OnCanPlayThrough ] attrib
              val a_onchange : Xml.event_handler -> [> `OnChange ] attrib
              val a_ondurationchange :
                Xml.event_handler -> [> `OnDurationChange ] attrib
              val a_onemptied : Xml.event_handler -> [> `OnEmptied ] attrib
              val a_onended : Xml.event_handler -> [> `OnEnded ] attrib
              val a_onerror : Xml.event_handler -> [> `OnError ] attrib
              val a_onfocus : Xml.event_handler -> [> `OnFocus ] attrib
              val a_onformchange :
                Xml.event_handler -> [> `OnFormChange ] attrib
              val a_onforminput :
                Xml.event_handler -> [> `OnFormInput ] attrib
              val a_onhashchange :
                Xml.event_handler -> [> `OnHashChange ] attrib
              val a_oninput : Xml.event_handler -> [> `OnInput ] attrib
              val a_oninvalid : Xml.event_handler -> [> `OnInvalid ] attrib
              val a_onmousewheel :
                Xml.event_handler -> [> `OnMouseWheel ] attrib
              val a_onoffline : Xml.event_handler -> [> `OnOffLine ] attrib
              val a_ononline : Xml.event_handler -> [> `OnOnLine ] attrib
              val a_onpause : Xml.event_handler -> [> `OnPause ] attrib
              val a_onplay : Xml.event_handler -> [> `OnPlay ] attrib
              val a_onplaying : Xml.event_handler -> [> `OnPlaying ] attrib
              val a_onpagehide : Xml.event_handler -> [> `OnPageHide ] attrib
              val a_onpageshow : Xml.event_handler -> [> `OnPageShow ] attrib
              val a_onpopstate : Xml.event_handler -> [> `OnPopState ] attrib
              val a_onprogress : Xml.event_handler -> [> `OnProgress ] attrib
              val a_onratechange :
                Xml.event_handler -> [> `OnRateChange ] attrib
              val a_onreadystatechange :
                Xml.event_handler -> [> `OnReadyStateChange ] attrib
              val a_onredo : Xml.event_handler -> [> `OnRedo ] attrib
              val a_onresize : Xml.event_handler -> [> `OnResize ] attrib
              val a_onscroll : Xml.event_handler -> [> `OnScroll ] attrib
              val a_onseeked : Xml.event_handler -> [> `OnSeeked ] attrib
              val a_onseeking : Xml.event_handler -> [> `OnSeeking ] attrib
              val a_onselect : Xml.event_handler -> [> `OnSelect ] attrib
              val a_onshow : Xml.event_handler -> [> `OnShow ] attrib
              val a_onstalled : Xml.event_handler -> [> `OnStalled ] attrib
              val a_onstorage : Xml.event_handler -> [> `OnStorage ] attrib
              val a_onsubmit : Xml.event_handler -> [> `OnSubmit ] attrib
              val a_onsuspend : Xml.event_handler -> [> `OnSuspend ] attrib
              val a_ontimeupdate :
                Xml.event_handler -> [> `OnTimeUpdate ] attrib
              val a_onundo : Xml.event_handler -> [> `OnUndo ] attrib
              val a_onunload : Xml.event_handler -> [> `OnUnload ] attrib
              val a_onvolumechange :
                Xml.event_handler -> [> `OnVolumeChange ] attrib
              val a_onwaiting : Xml.event_handler -> [> `OnWaiting ] attrib
              val a_onload : Xml.event_handler -> [> `OnLoad ] attrib
              val a_onloadeddata :
                Xml.event_handler -> [> `OnLoadedData ] attrib
              val a_onloadedmetadata :
                Xml.event_handler -> [> `OnLoadedMetaData ] attrib
              val a_onloadstart :
                Xml.event_handler -> [> `OnLoadStart ] attrib
              val a_onmessage : Xml.event_handler -> [> `OnMessage ] attrib
              val a_onclick : Xml.mouse_event_handler -> [> `OnClick ] attrib
              val a_oncontextmenu :
                Xml.mouse_event_handler -> [> `OnContextMenu ] attrib
              val a_ondblclick :
                Xml.mouse_event_handler -> [> `OnDblClick ] attrib
              val a_ondrag : Xml.mouse_event_handler -> [> `OnDrag ] attrib
              val a_ondragend :
                Xml.mouse_event_handler -> [> `OnDragEnd ] attrib
              val a_ondragenter :
                Xml.mouse_event_handler -> [> `OnDragEnter ] attrib
              val a_ondragleave :
                Xml.mouse_event_handler -> [> `OnDragLeave ] attrib
              val a_ondragover :
                Xml.mouse_event_handler -> [> `OnDragOver ] attrib
              val a_ondragstart :
                Xml.mouse_event_handler -> [> `OnDragStart ] attrib
              val a_ondrop : Xml.mouse_event_handler -> [> `OnDrop ] attrib
              val a_onmousedown :
                Xml.mouse_event_handler -> [> `OnMouseDown ] attrib
              val a_onmouseup :
                Xml.mouse_event_handler -> [> `OnMouseUp ] attrib
              val a_onmouseover :
                Xml.mouse_event_handler -> [> `OnMouseOver ] attrib
              val a_onmousemove :
                Xml.mouse_event_handler -> [> `OnMouseMove ] attrib
              val a_onmouseout :
                Xml.mouse_event_handler -> [> `OnMouseOut ] attrib
              val a_ontouchstart :
                Xml.touch_event_handler -> [> `OnTouchStart ] attrib
              val a_ontouchend :
                Xml.touch_event_handler -> [> `OnTouchEnd ] attrib
              val a_ontouchmove :
                Xml.touch_event_handler -> [> `OnTouchMove ] attrib
              val a_ontouchcancel :
                Xml.touch_event_handler -> [> `OnTouchCancel ] attrib
              val a_onkeypress :
                Xml.keyboard_event_handler -> [> `OnKeyPress ] attrib
              val a_onkeydown :
                Xml.keyboard_event_handler -> [> `OnKeyDown ] attrib
              val a_onkeyup :
                Xml.keyboard_event_handler -> [> `OnKeyUp ] attrib
              val a_allowfullscreen : unit -> [> `Allowfullscreen ] attrib
              val a_allowpaymentrequest :
                unit -> [> `Allowpaymentrequest ] attrib
              val a_autocomplete : bool wrap -> [> `Autocomplete ] attrib
              val a_async : unit -> [> `Async ] attrib
              val a_autofocus : unit -> [> `Autofocus ] attrib
              val a_autoplay : unit -> [> `Autoplay ] attrib
              val a_muted : unit -> [> `Muted ] attrib
              val a_crossorigin :
                [< `Anonymous | `Use_credentials ] wrap ->
                [> `Crossorigin ] attrib
              val a_integrity : string wrap -> [> `Integrity ] attrib
              val a_mediagroup : string wrap -> [> `Mediagroup ] attrib
              val a_challenge :
                Html_types.text wrap -> [> `Challenge ] attrib
              val a_contenteditable :
                bool wrap -> [> `Contenteditable ] attrib
              val a_contextmenu :
                Html_types.idref wrap -> [> `Contextmenu ] attrib
              val a_controls : unit -> [> `Controls ] attrib
              val a_dir : [< `Ltr | `Rtl ] wrap -> [> `Dir ] attrib
              val a_draggable : bool wrap -> [> `Draggable ] attrib
              val a_form : Html_types.idref wrap -> [> `Form ] attrib
              val a_formaction : Xml.uri wrap -> [> `Formaction ] attrib
              val a_formenctype :
                Html_types.contenttype wrap -> [> `Formenctype ] attrib
              val a_formnovalidate : unit -> [> `Formnovalidate ] attrib
              val a_formtarget :
                Html_types.text wrap -> [> `Formtarget ] attrib
              val a_hidden : unit -> [> `Hidden ] attrib
              val a_high : Html_types.float_number wrap -> [> `High ] attrib
              val a_icon : Xml.uri wrap -> [> `Icon ] attrib
              val a_ismap : unit -> [> `Ismap ] attrib
              val a_keytype : Html_types.text wrap -> [> `Keytype ] attrib
              val a_list : Html_types.idref wrap -> [> `List ] attrib
              val a_loop : unit -> [> `Loop ] attrib
              val a_low : Html_types.float_number wrap -> [> `High ] attrib
              val a_max : Html_types.float_number wrap -> [> `Max ] attrib
              val a_input_max :
                Html_types.number_or_datetime wrap -> [> `Input_Max ] attrib
              val a_min : Html_types.float_number wrap -> [> `Min ] attrib
              val a_input_min :
                Html_types.number_or_datetime wrap -> [> `Input_Min ] attrib
              val a_inputmode :
                [< `Decimal
                 | `Email
                 | `None
                 | `Numeric
                 | `Search
                 | `Tel
                 | `Text
                 | `Url ]
                wrap -> [> `Inputmode ] attrib
              val a_novalidate : unit -> [> `Novalidate ] attrib
              val a_open : unit -> [> `Open ] attrib
              val a_optimum :
                Html_types.float_number wrap -> [> `Optimum ] attrib
              val a_pattern : Html_types.text wrap -> [> `Pattern ] attrib
              val a_placeholder :
                Html_types.text wrap -> [> `Placeholder ] attrib
              val a_poster : Xml.uri wrap -> [> `Poster ] attrib
              val a_preload :
                [< `Audio | `Metadata | `None ] wrap -> [> `Preload ] attrib
              val a_pubdate : unit -> [> `Pubdate ] attrib
              val a_radiogroup :
                Html_types.text wrap -> [> `Radiogroup ] attrib
              val a_referrerpolicy :
                Html_types.referrerpolicy wrap -> [> `Referrerpolicy ] attrib
              val a_required : unit -> [> `Required ] attrib
              val a_reversed : unit -> [> `Reversed ] attrib
              val a_sandbox :
                [< Html_types.sandbox_token ] list wrap ->
                [> `Sandbox ] attrib
              val a_spellcheck : bool wrap -> [> `Spellcheck ] attrib
              val a_scoped : unit -> [> `Scoped ] attrib
              val a_seamless : unit -> [> `Seamless ] attrib
              val a_sizes :
                (Html_types.number * Html_types.number) list option wrap ->
                [> `Sizes ] attrib
              val a_span : Html_types.number wrap -> [> `Span ] attrib
              val a_srclang :
                Html_types.nmtoken wrap -> [> `XML_lang ] attrib
              type image_candidate =
                  [ `Url of uri
                  | `Url_pixel of uri * Html_types.float_number
                  | `Url_width of uri * Html_types.number ]
              val a_srcset : image_candidate list wrap -> [> `Srcset ] attrib
              val a_img_sizes :
                Html_types.text list wrap -> [> `Img_sizes ] attrib
              val a_start : Html_types.number wrap -> [> `Start ] attrib
              val a_step :
                Html_types.float_number option wrap -> [> `Step ] attrib
              val a_translate :
                [< `No | `Yes ] wrap -> [> `Translate ] attrib
              val a_wrap : [< `Hard | `Soft ] wrap -> [> `Wrap ] attrib
              val a_version : Html_types.cdata wrap -> [> `Version ] attrib
              val a_xmlns :
                [< `W3_org_1999_xhtml ] wrap -> [> `XMLns ] attrib
              val a_manifest : Xml.uri wrap -> [> `Manifest ] attrib
              val a_cite : Xml.uri wrap -> [> `Cite ] attrib
              val a_xml_space :
                [< `Default | `Preserve ] wrap -> [> `XML_space ] attrib
              val a_accesskey :
                Html_types.character wrap -> [> `Accesskey ] attrib
              val a_charset : Html_types.charset wrap -> [> `Charset ] attrib
              val a_accept_charset :
                Html_types.charsets wrap -> [> `Accept_charset ] attrib
              val a_accept :
                Html_types.contenttypes wrap -> [> `Accept ] attrib
              val a_href : Xml.uri wrap -> [> `Href ] attrib
              val a_hreflang :
                Html_types.languagecode wrap -> [> `Hreflang ] attrib
              val a_download : string option wrap -> [> `Download ] attrib
              val a_rel : Html_types.linktypes wrap -> [> `Rel ] attrib
              val a_tabindex :
                Html_types.number wrap -> [> `Tabindex ] attrib
              val a_mime_type :
                Html_types.contenttype wrap -> [> `Mime_type ] attrib
              val a_datetime : Html_types.cdata wrap -> [> `Datetime ] attrib
              val a_action : Xml.uri wrap -> [> `Action ] attrib
              val a_checked : unit -> [> `Checked ] attrib
              val a_cols : Html_types.number wrap -> [> `Cols ] attrib
              val a_enctype :
                Html_types.contenttype wrap -> [> `Enctype ] attrib
              val a_label_for :
                Html_types.idref wrap -> [> `Label_for ] attrib
              val a_for : Html_types.idref wrap -> [> `Label_for ] attrib
              val a_output_for :
                Html_types.idrefs wrap -> [> `Output_for ] attrib
              val a_for_list :
                Html_types.idrefs wrap -> [> `Output_for ] attrib
              val a_maxlength :
                Html_types.number wrap -> [> `Maxlength ] attrib
              val a_minlength :
                Html_types.number wrap -> [> `Minlength ] attrib
              val a_method : [< `Get | `Post ] wrap -> [> `Method ] attrib
              val a_formmethod :
                [< `Get | `Post ] wrap -> [> `Method ] attrib
              val a_multiple : unit -> [> `Multiple ] attrib
              val a_name : Html_types.text wrap -> [> `Name ] attrib
              val a_rows : Html_types.number wrap -> [> `Rows ] attrib
              val a_selected : unit -> [> `Selected ] attrib
              val a_size : Html_types.number wrap -> [> `Size ] attrib
              val a_src : Xml.uri wrap -> [> `Src ] attrib
              val a_input_type :
                [< `Button
                 | `Checkbox
                 | `Color
                 | `Date
                 | `Datetime
                 | `Datetime_local
                 | `Email
                 | `File
                 | `Hidden
                 | `Image
                 | `Month
                 | `Number
                 | `Password
                 | `Radio
                 | `Range
                 | `Reset
                 | `Search
                 | `Submit
                 | `Tel
                 | `Text
                 | `Time
                 | `Url
                 | `Week ]
                wrap -> [> `Input_Type ] attrib
              val a_text_value :
                Html_types.text wrap -> [> `Text_Value ] attrib
              val a_int_value :
                Html_types.number wrap -> [> `Int_Value ] attrib
              val a_value : Html_types.cdata wrap -> [> `Value ] attrib
              val a_float_value :
                Html_types.float_number wrap -> [> `Float_Value ] attrib
              val a_disabled : unit -> [> `Disabled ] attrib
              val a_readonly : unit -> [> `ReadOnly ] attrib
              val a_button_type :
                [< `Button | `Reset | `Submit ] wrap ->
                [> `Button_Type ] attrib
              val a_command_type :
                [< `Checkbox | `Command | `Radio ] wrap ->
                [> `Command_Type ] attrib
              val a_menu_type :
                [< `Context | `Toolbar ] wrap -> [> `Menu_Type ] attrib
              val a_label : Html_types.text wrap -> [> `Label ] attrib
              val a_align :
                [< `Char | `Justify | `Left | `Right ] wrap ->
                [> `Align ] attrib
              val a_axis : Html_types.cdata wrap -> [> `Axis ] attrib
              val a_colspan : Html_types.number wrap -> [> `Colspan ] attrib
              val a_headers : Html_types.idrefs wrap -> [> `Headers ] attrib
              val a_rowspan : Html_types.number wrap -> [> `Rowspan ] attrib
              val a_scope :
                [< `Col | `Colgroup | `Row | `Rowgroup ] wrap ->
                [> `Scope ] attrib
              val a_summary : Html_types.text wrap -> [> `Summary ] attrib
              val a_border : Html_types.pixels wrap -> [> `Border ] attrib
              val a_rules :
                [< `All | `Cols | `Groups | `None | `Rows ] wrap ->
                [> `Rules ] attrib
              val a_char : Html_types.character wrap -> [> `Char ] attrib
              val a_alt : Html_types.text wrap -> [> `Alt ] attrib
              val a_height : Html_types.number wrap -> [> `Height ] attrib
              val a_width : Html_types.number wrap -> [> `Width ] attrib
              type shape = [ `Circle | `Default | `Poly | `Rect ]
              val a_shape : shape wrap -> [> `Shape ] attrib
              val a_coords : Html_types.numbers wrap -> [> `Coords ] attrib
              val a_usemap : Html_types.idref wrap -> [> `Usemap ] attrib
              val a_data : Xml.uri wrap -> [> `Data ] attrib
              val a_codetype :
                Html_types.contenttype wrap -> [> `Codetype ] attrib
              val a_frameborder :
                [< `One | `Zero ] wrap -> [> `Frameborder ] attrib
              val a_marginheight :
                Html_types.pixels wrap -> [> `Marginheight ] attrib
              val a_marginwidth :
                Html_types.pixels wrap -> [> `Marginwidth ] attrib
              val a_scrolling :
                [< `Auto | `No | `Yes ] wrap -> [> `Scrolling ] attrib
              val a_target :
                Html_types.frametarget wrap -> [> `Target ] attrib
              val a_content : Html_types.text wrap -> [> `Content ] attrib
              val a_http_equiv :
                Html_types.text wrap -> [> `Http_equiv ] attrib
              val a_defer : unit -> [> `Defer ] attrib
              val a_media : Html_types.mediadesc wrap -> [> `Media ] attrib
              val a_style : string wrap -> [> `Style_Attr ] attrib
              val a_property : string wrap -> [> `Property ] attrib
              val a_role : string list wrap -> [> `Role ] attrib
              val a_aria : string -> string list wrap -> [> `Aria ] attrib
              val txt : string wrap -> [> Html_types.txt ] elt
              val html :
                ?a:Html_types.html_attrib attrib list ->
                [< Html_types.head ] elt wrap ->
                [< Html_types.body ] elt wrap -> [> Html_types.html ] elt
              val head :
                ?a:Html_types.head_attrib attrib list ->
                [< Html_types.title ] elt wrap ->
                Html_types.head_content_fun elt list_wrap ->
                [> Html_types.head ] elt
              val base :
                ([< Html_types.base_attrib ], [> Html_types.base ]) nullary
              val title :
                (Html_types.title_attrib, [< Html_types.title_content_fun ],
                 [> Html_types.title ])
                unary
              val body :
                ([< Html_types.body_attrib ],
                 [< Html_types.body_content_fun ], [> Html_types.body ])
                star
              val svg :
                ?a:[< Html_types.svg_attrib ] Svg.D.Raw.attrib list ->
                [< Html_types.svg_content ] Svg.D.Raw.elt list_wrap ->
                [> Html_types.svg ] elt
              val footer :
                ([< Html_types.footer_attrib ],
                 [< Html_types.footer_content_fun ], [> Html_types.footer ])
                star
              val header :
                ([< Html_types.header_attrib ],
                 [< Html_types.header_content_fun ], [> Html_types.header ])
                star
              val section :
                ([< Html_types.section_attrib ],
                 [< Html_types.section_content_fun ],
                 [> Html_types.section ])
                star
              val nav :
                ([< Html_types.nav_attrib ], [< Html_types.nav_content_fun ],
                 [> Html_types.nav ])
                star
              val h1 :
                ([< Html_types.h1_attrib ], [< Html_types.h1_content_fun ],
                 [> Html_types.h1 ])
                star
              val h2 :
                ([< Html_types.h2_attrib ], [< Html_types.h2_content_fun ],
                 [> Html_types.h2 ])
                star
              val h3 :
                ([< Html_types.h3_attrib ], [< Html_types.h3_content_fun ],
                 [> Html_types.h3 ])
                star
              val h4 :
                ([< Html_types.h4_attrib ], [< Html_types.h4_content_fun ],
                 [> Html_types.h4 ])
                star
              val h5 :
                ([< Html_types.h5_attrib ], [< Html_types.h5_content_fun ],
                 [> Html_types.h5 ])
                star
              val h6 :
                ([< Html_types.h6_attrib ], [< Html_types.h6_content_fun ],
                 [> Html_types.h6 ])
                star
              val hgroup :
                ([< Html_types.hgroup_attrib ],
                 [< Html_types.hgroup_content_fun ], [> Html_types.hgroup ])
                star
              val address :
                ([< Html_types.address_attrib ],
                 [< Html_types.address_content_fun ],
                 [> Html_types.address ])
                star
              val article :
                ([< Html_types.article_attrib ],
                 [< Html_types.article_content_fun ],
                 [> Html_types.article ])
                star
              val aside :
                ([< Html_types.aside_attrib ],
                 [< Html_types.aside_content_fun ], [> Html_types.aside ])
                star
              val main :
                ([< Html_types.main_attrib ],
                 [< Html_types.main_content_fun ], [> Html_types.main ])
                star
              val p :
                ([< Html_types.p_attrib ], [< Html_types.p_content_fun ],
                 [> Html_types.p ])
                star
              val pre :
                ([< Html_types.pre_attrib ], [< Html_types.pre_content_fun ],
                 [> Html_types.pre ])
                star
              val blockquote :
                ([< Html_types.blockquote_attrib ],
                 [< Html_types.blockquote_content_fun ],
                 [> Html_types.blockquote ])
                star
              val div :
                ([< Html_types.div_attrib ], [< Html_types.div_content_fun ],
                 [> Html_types.div ])
                star
              val dl :
                ([< Html_types.dl_attrib ], [< Html_types.dl_content_fun ],
                 [> Html_types.dl ])
                star
              val ol :
                ([< Html_types.ol_attrib ], [< Html_types.ol_content_fun ],
                 [> Html_types.ol ])
                star
              val ul :
                ([< Html_types.ul_attrib ], [< Html_types.ul_content_fun ],
                 [> Html_types.ul ])
                star
              val dd :
                ([< Html_types.dd_attrib ], [< Html_types.dd_content_fun ],
                 [> Html_types.dd ])
                star
              val dt :
                ([< Html_types.dt_attrib ], [< Html_types.dt_content_fun ],
                 [> Html_types.dt ])
                star
              val li :
                ([< Html_types.li_attrib ], [< Html_types.li_content_fun ],
                 [> Html_types.li ])
                star
              val figcaption :
                ([< Html_types.figcaption_attrib ],
                 [< Html_types.figcaption_content_fun ],
                 [> Html_types.figcaption ])
                star
              val figure :
                ?figcaption:[ `Bottom of [< Html_types.figcaption ] elt wrap
                            | `Top of [< Html_types.figcaption ] elt wrap ] ->
                ([< Html_types.figure_attrib ],
                 [< Html_types.figure_content_fun ], [> Html_types.figure ])
                star
              val hr :
                ([< Html_types.hr_attrib ], [> Html_types.hr ]) nullary
              val b :
                ([< Html_types.b_attrib ], [< Html_types.b_content_fun ],
                 [> Html_types.b ])
                star
              val i :
                ([< Html_types.i_attrib ], [< Html_types.i_content_fun ],
                 [> Html_types.i ])
                star
              val u :
                ([< Html_types.u_attrib ], [< Html_types.u_content_fun ],
                 [> Html_types.u ])
                star
              val small :
                ([< Html_types.small_attrib ],
                 [< Html_types.small_content_fun ], [> Html_types.small ])
                star
              val sub :
                ([< Html_types.sub_attrib ], [< Html_types.sub_content_fun ],
                 [> Html_types.sub ])
                star
              val sup :
                ([< Html_types.sup_attrib ], [< Html_types.sup_content_fun ],
                 [> Html_types.sup ])
                star
              val mark :
                ([< Html_types.mark_attrib ],
                 [< Html_types.mark_content_fun ], [> Html_types.mark ])
                star
              val wbr :
                ([< Html_types.wbr_attrib ], [> Html_types.wbr ]) nullary
              val bdo :
                dir:[< `Ltr | `Rtl ] wrap ->
                ([< Html_types.bdo_attrib ], [< Html_types.bdo_content_fun ],
                 [> Html_types.bdo ])
                star
              val abbr :
                ([< Html_types.abbr_attrib ],
                 [< Html_types.abbr_content_fun ], [> Html_types.abbr ])
                star
              val br :
                ([< Html_types.br_attrib ], [> Html_types.br ]) nullary
              val cite :
                ([< Html_types.cite_attrib ],
                 [< Html_types.cite_content_fun ], [> Html_types.cite ])
                star
              val code :
                ([< Html_types.code_attrib ],
                 [< Html_types.code_content_fun ], [> Html_types.code ])
                star
              val dfn :
                ([< Html_types.dfn_attrib ], [< Html_types.dfn_content_fun ],
                 [> Html_types.dfn ])
                star
              val em :
                ([< Html_types.em_attrib ], [< Html_types.em_content_fun ],
                 [> Html_types.em ])
                star
              val kbd :
                ([< Html_types.kbd_attrib ], [< Html_types.kbd_content_fun ],
                 [> Html_types.kbd ])
                star
              val q :
                ([< Html_types.q_attrib ], [< Html_types.q_content_fun ],
                 [> Html_types.q ])
                star
              val samp :
                ([< Html_types.samp_attrib ],
                 [< Html_types.samp_content_fun ], [> Html_types.samp ])
                star
              val span :
                ([< Html_types.span_attrib ],
                 [< Html_types.span_content_fun ], [> Html_types.span ])
                star
              val strong :
                ([< Html_types.strong_attrib ],
                 [< Html_types.strong_content_fun ], [> Html_types.strong ])
                star
              val time :
                ([< Html_types.time_attrib ],
                 [< Html_types.time_content_fun ], [> Html_types.time ])
                star
              val var :
                ([< Html_types.var_attrib ], [< Html_types.var_content_fun ],
                 [> Html_types.var ])
                star
              val a :
                ([< Html_types.a_attrib ], 'a, [> 'Html_types.a ]) star
              val del :
                ([< Html_types.del_attrib ], 'a, [> 'Html_types.del ]) star
              val ins :
                ([< Html_types.ins_attrib ], 'a, [> 'Html_types.ins ]) star
              val img :
                src:Xml.uri wrap ->
                alt:Html_types.text wrap ->
                ([< Html_types.img_attrib ], [> Html_types.img ]) nullary
              val picture :
                img:[< Html_types.img ] elt wrap ->
                ([< Html_types.picture_attrib ],
                 [< Html_types.picture_content_fun ],
                 [> Html_types.picture ])
                star
              val iframe :
                ([< Html_types.iframe_attrib ],
                 [< Html_types.iframe_content_fun ], [> Html_types.iframe ])
                star
              val object_ :
                ?params:[< Html_types.param ] elt list_wrap ->
                ([< Html_types.object__attrib ], 'a, [> `Object of 'a ]) star
              val param :
                ([< Html_types.param_attrib ], [> Html_types.param ]) nullary
              val embed :
                ([< Html_types.embed_attrib ], [> Html_types.embed ]) nullary
              val audio :
                ?src:Xml.uri wrap ->
                ?srcs:[< Html_types.source ] elt list_wrap ->
                ([< Html_types.audio_attrib ], 'a, [> 'Html_types.audio ])
                star
              val video :
                ?src:Xml.uri wrap ->
                ?srcs:[< Html_types.source ] elt list_wrap ->
                ([< Html_types.video_attrib ], 'a, [> 'Html_types.video ])
                star
              val canvas :
                ([< Html_types.canvas_attrib ], 'a,
                 [> 'Html_types.canvas ])
                star
              val source :
                ([< Html_types.source_attrib ], [> Html_types.source ])
                nullary
              val area :
                alt:Html_types.text wrap ->
                ([< `Accesskey
                  | `Alt
                  | `Aria
                  | `Class
                  | `Contenteditable
                  | `Contextmenu
                  | `Coords
                  | `Dir
                  | `Draggable
                  | `Hidden
                  | `Hreflang
                  | `Id
                  | `Lang
                  | `Media
                  | `Mime_type
                  | `OnAbort
                  | `OnBlur
                  | `OnCanPlay
                  | `OnCanPlayThrough
                  | `OnChange
                  | `OnClick
                  | `OnContextMenu
                  | `OnDblClick
                  | `OnDrag
                  | `OnDragEnd
                  | `OnDragEnter
                  | `OnDragLeave
                  | `OnDragOver
                  | `OnDragStart
                  | `OnDrop
                  | `OnDurationChange
                  | `OnEmptied
                  | `OnEnded
                  | `OnError
                  | `OnFocus
                  | `OnFormChange
                  | `OnFormInput
                  | `OnInput
                  | `OnInvalid
                  | `OnKeyDown
                  | `OnKeyPress
                  | `OnKeyUp
                  | `OnLoad
                  | `OnLoadStart
                  | `OnLoadedData
                  | `OnLoadedMetaData
                  | `OnMouseDown
                  | `OnMouseMove
                  | `OnMouseOut
                  | `OnMouseOver
                  | `OnMouseUp
                  | `OnMouseWheel
                  | `OnPause
                  | `OnPlay
                  | `OnPlaying
                  | `OnProgress
                  | `OnRateChange
                  | `OnReadyStateChange
                  | `OnScroll
                  | `OnSeeked
                  | `OnSeeking
                  | `OnSelect
                  | `OnShow
                  | `OnStalled
                  | `OnSubmit
                  | `OnSuspend
                  | `OnTimeUpdate
                  | `OnTouchCancel
                  | `OnTouchEnd
                  | `OnTouchMove
                  | `OnTouchStart
                  | `OnVolumeChange
                  | `OnWaiting
                  | `Rel
                  | `Role
                  | `Shape
                  | `Spellcheck
                  | `Style_Attr
                  | `Tabindex
                  | `Target
                  | `Title
                  | `Translate
                  | `User_data
                  | `XML_lang
                  | `XMLns ],
                 [> Html_types.area ])
                nullary
              val map :
                ([< Html_types.map_attrib ], 'a, [> 'Html_types.map ]) star
              val caption :
                ([< Html_types.caption_attrib ],
                 [< Html_types.caption_content_fun ],
                 [> Html_types.caption ])
                star
              val table :
                ?caption:[< Html_types.caption ] elt wrap ->
                ?columns:[< Html_types.colgroup ] elt list_wrap ->
                ?thead:[< Html_types.thead ] elt wrap ->
                ?tfoot:[< Html_types.tfoot ] elt wrap ->
                ([< Html_types.table_attrib ],
                 [< Html_types.table_content_fun ], [> Html_types.table ])
                star
              val tablex :
                ?caption:[< Html_types.caption ] elt wrap ->
                ?columns:[< Html_types.colgroup ] elt list_wrap ->
                ?thead:[< Html_types.thead ] elt wrap ->
                ?tfoot:[< Html_types.tfoot ] elt wrap ->
                ([< Html_types.tablex_attrib ],
                 [< Html_types.tablex_content_fun ], [> Html_types.tablex ])
                star
              val colgroup :
                ([< Html_types.colgroup_attrib ],
                 [< Html_types.colgroup_content_fun ],
                 [> Html_types.colgroup ])
                star
              val col :
                ([< Html_types.col_attrib ], [> Html_types.col ]) nullary
              val thead :
                ([< Html_types.thead_attrib ],
                 [< Html_types.thead_content_fun ], [> Html_types.thead ])
                star
              val tbody :
                ([< Html_types.tbody_attrib ],
                 [< Html_types.tbody_content_fun ], [> Html_types.tbody ])
                star
              val tfoot :
                ([< Html_types.tfoot_attrib ],
                 [< Html_types.tfoot_content_fun ], [> Html_types.tfoot ])
                star
              val td :
                ([< Html_types.td_attrib ], [< Html_types.td_content_fun ],
                 [> Html_types.td ])
                star
              val th :
                ([< Html_types.th_attrib ], [< Html_types.th_content_fun ],
                 [> Html_types.th ])
                star
              val tr :
                ([< Html_types.tr_attrib ], [< Html_types.tr_content_fun ],
                 [> Html_types.tr ])
                star
              val form :
                ([< Html_types.form_attrib ],
                 [< Html_types.form_content_fun ], [> Html_types.form ])
                star
              val fieldset :
                ?legend:[< Html_types.legend ] elt wrap ->
                ([< Html_types.fieldset_attrib ],
                 [< Html_types.fieldset_content_fun ],
                 [> Html_types.fieldset ])
                star
              val legend :
                ([< Html_types.legend_attrib ],
                 [< Html_types.legend_content_fun ], [> Html_types.legend ])
                star
              val label :
                ([< Html_types.label_attrib ],
                 [< Html_types.label_content_fun ], [> Html_types.label ])
                star
              val input :
                ([< Html_types.input_attrib ], [> Html_types.input ]) nullary
              val button :
                ([< Html_types.button_attrib ],
                 [< Html_types.button_content_fun ], [> Html_types.button ])
                star
              val select :
                ([< Html_types.select_attrib ],
                 [< Html_types.select_content_fun ], [> Html_types.select ])
                star
              val datalist :
                ?children:[< `Options of
                               [< Html_types.selectoption ] elt list_wrap
                           | `Phras of [< Html_types.phrasing ] elt list_wrap
                          ] ->
                ([< Html_types.datalist_attrib ], [> Html_types.datalist ])
                nullary
              val optgroup :
                label:Html_types.text wrap ->
                ([< Html_types.optgroup_attrib ],
                 [< Html_types.optgroup_content_fun ],
                 [> Html_types.optgroup ])
                star
              val option :
                ([< Html_types.option_attrib ],
                 [< Html_types.option_content_fun ],
                 [> Html_types.selectoption ])
                unary
              val textarea :
                ([< Html_types.textarea_attrib ],
                 [< Html_types.textarea_content_fun ],
                 [> Html_types.textarea ])
                unary
              val keygen :
                ([< Html_types.keygen_attrib ], [> Html_types.keygen ])
                nullary
              val progress :
                ([< Html_types.progress_attrib ],
                 [< Html_types.progress_content_fun ],
                 [> Html_types.progress ])
                star
              val meter :
                ([< Html_types.meter_attrib ],
                 [< Html_types.meter_content_fun ], [> Html_types.meter ])
                star
              val output_elt :
                ([< Html_types.output_elt_attrib ],
                 [< Html_types.output_elt_content_fun ],
                 [> Html_types.output_elt ])
                star
              val entity : string -> [> Html_types.txt ] elt
              val space : unit -> [> Html_types.txt ] elt
              val cdata : string -> [> Html_types.txt ] elt
              val cdata_script : string -> [> Html_types.txt ] elt
              val cdata_style : string -> [> Html_types.txt ] elt
              val details :
                [< Html_types.summary ] elt wrap ->
                ([< Html_types.details_attrib ],
                 [< Html_types.details_content_fun ],
                 [> Html_types.details ])
                star
              val summary :
                ([< Html_types.summary_attrib ],
                 [< Html_types.summary_content_fun ],
                 [> Html_types.summary ])
                star
              val command :
                label:Html_types.text wrap ->
                ([< Html_types.command_attrib ], [> Html_types.command ])
                nullary
              val menu :
                ?children:[< `Flows of [< Html_types.flow5 ] elt list_wrap
                           | `Lis of
                               [< `Li of [< Html_types.common ] ] elt
                               list_wrap ] ->
                ([< Html_types.menu_attrib ], [> Html_types.menu ]) nullary
              val script :
                ([< Html_types.script_attrib ],
                 [< Html_types.script_content_fun ], [> Html_types.script ])
                unary
              val noscript :
                ([< Html_types.noscript_attrib ],
                 [< Html_types.noscript_content_fun ],
                 [> Html_types.noscript ])
                star
              val template :
                ([< Html_types.template_attrib ],
                 [< Html_types.template_content_fun ],
                 [> Html_types.template ])
                star
              val meta :
                ([< Html_types.meta_attrib ], [> Html_types.meta ]) nullary
              val style :
                ([< Html_types.style_attrib ],
                 [< Html_types.style_content_fun ], [> Html_types.style ])
                star
              val link :
                rel:Html_types.linktypes wrap ->
                href:Xml.uri wrap ->
                ([< Html_types.link_attrib ], [> Html_types.link ]) nullary
              val rt :
                ([< Html_types.rt_attrib ], [< Html_types.rt_content_fun ],
                 [> Html_types.rt ])
                star
              val rp :
                ([< Html_types.rp_attrib ], [< Html_types.rp_content_fun ],
                 [> Html_types.rp ])
                star
              val ruby :
                ([< Html_types.ruby_attrib ],
                 [< Html_types.ruby_content_fun ], [> Html_types.ruby ])
                star
              val pcdata : string wrap -> [> Html_types.pcdata ] elt
              val of_seq : Xml_stream.signal Seq.t -> 'a elt list_wrap
              val tot : Xml.elt -> 'a elt
              val totl : Xml.elt list_wrap -> 'a elt list_wrap
              val toelt : 'a elt -> Xml.elt
              val toeltl : 'a elt list_wrap -> Xml.elt list_wrap
              val doc_toelt : doc -> Xml.elt
              val to_xmlattribs : 'a attrib list -> Xml.attrib list
              val to_attrib : Xml.attrib -> 'a attrib
              module Unsafe :
                sig
                  val data : string wrap -> 'a elt
                  val node :
                    string -> ?a:'a attrib list -> 'b elt list_wrap -> 'c elt
                  val leaf : string -> ?a:'a attrib list -> unit -> 'b elt
                  val coerce_elt : 'a elt -> 'b elt
                  val string_attrib : string -> string wrap -> 'a attrib
                  val float_attrib : string -> float wrap -> 'a attrib
                  val int_attrib : string -> int wrap -> 'a attrib
                  val uri_attrib : string -> uri wrap -> 'a attrib
                  val space_sep_attrib :
                    string -> string list wrap -> 'a attrib
                  val comma_sep_attrib :
                    string -> string list wrap -> 'a attrib
                end
            end
          type 'a elt = 'a elt
          type doc = Html_types.html elt
          type 'a attrib = 'a attrib
          module Xml :
            sig
              module W :
                sig
                  type 'a t = 'Xml.W.t
                  val return : '-> 'a t
                  type ('a, 'b) ft = ('a, 'b) Xml.W.ft
                  val fmap : ('a, 'b) ft -> 'a t -> 'b t
                  type 'a tlist = 'Xml.W.tlist
                  val nil : unit -> 'a tlist
                  val singleton : 'a t -> 'a tlist
                  val cons : 'a t -> 'a tlist -> 'a tlist
                  val append : 'a tlist -> 'a tlist -> 'a tlist
                  val map : ('a, 'b) ft -> 'a tlist -> 'b tlist
                end
              type 'a wrap = 'W.t
              type 'a list_wrap = 'W.tlist
              type uri = Xml.uri
              val string_of_uri : (uri, string) W.ft
              val uri_of_string : (string, uri) W.ft
              type aname = string
              type event_handler = Xml.event_handler
              type mouse_event_handler = Xml.mouse_event_handler
              type keyboard_event_handler = Xml.keyboard_event_handler
              type touch_event_handler = Xml.touch_event_handler
              type attrib = Xml.attrib
              val float_attrib : aname -> float wrap -> attrib
              val int_attrib : aname -> int wrap -> attrib
              val string_attrib : aname -> string wrap -> attrib
              val space_sep_attrib : aname -> string list wrap -> attrib
              val comma_sep_attrib : aname -> string list wrap -> attrib
              val event_handler_attrib : aname -> event_handler -> attrib
              val mouse_event_handler_attrib :
                aname -> mouse_event_handler -> attrib
              val keyboard_event_handler_attrib :
                aname -> keyboard_event_handler -> attrib
              val touch_event_handler_attrib :
                aname -> touch_event_handler -> attrib
              val uri_attrib : aname -> uri wrap -> attrib
              val uris_attrib : aname -> uri list wrap -> attrib
              type elt = Xml.elt
              type ename = string
              val empty : unit -> elt
              val comment : string -> elt
              val pcdata : string wrap -> elt
              val encodedpcdata : string wrap -> elt
              val entity : string -> elt
              val leaf : ?a:attrib list -> ename -> elt
              val node : ?a:attrib list -> ename -> elt list_wrap -> elt
              val cdata : string -> elt
              val cdata_script : string -> elt
              val cdata_style : string -> elt
            end
          type 'a wrap = 'Xml.W.t
          type 'a list_wrap = 'Xml.W.tlist
          type ('a, 'b) nullary = ?a:'a attrib list -> unit -> 'b elt
          type ('a, 'b, 'c) unary =
              ?a:'a attrib list -> 'b elt wrap -> 'c elt
          type ('a, 'b, 'c) star =
              ?a:'a attrib list -> 'b elt list_wrap -> 'c elt
          module Info : Xml_sigs.Info
          type uri = Xml.uri
          val string_of_uri : (uri, string) Xml.W.ft
          val a_class : Html_types.nmtokens wrap -> [> `Class ] attrib
          val a_user_data :
            Html_types.nmtoken ->
            Html_types.text wrap -> [> `User_data ] attrib
          val a_id : Html_types.text wrap -> [> `Id ] attrib
          val a_title : Html_types.text wrap -> [> `Title ] attrib
          val a_xml_lang :
            Html_types.languagecode wrap -> [> `XML_lang ] attrib
          val a_lang : Html_types.languagecode wrap -> [> `Lang ] attrib
          val a_onabort : Xml.event_handler -> [> `OnAbort ] attrib
          val a_onafterprint : Xml.event_handler -> [> `OnAfterPrint ] attrib
          val a_onbeforeprint :
            Xml.event_handler -> [> `OnBeforePrint ] attrib
          val a_onbeforeunload :
            Xml.event_handler -> [> `OnBeforeUnload ] attrib
          val a_onblur : Xml.event_handler -> [> `OnBlur ] attrib
          val a_oncanplay : Xml.event_handler -> [> `OnCanPlay ] attrib
          val a_oncanplaythrough :
            Xml.event_handler -> [> `OnCanPlayThrough ] attrib
          val a_onchange : Xml.event_handler -> [> `OnChange ] attrib
          val a_ondurationchange :
            Xml.event_handler -> [> `OnDurationChange ] attrib
          val a_onemptied : Xml.event_handler -> [> `OnEmptied ] attrib
          val a_onended : Xml.event_handler -> [> `OnEnded ] attrib
          val a_onerror : Xml.event_handler -> [> `OnError ] attrib
          val a_onfocus : Xml.event_handler -> [> `OnFocus ] attrib
          val a_onformchange : Xml.event_handler -> [> `OnFormChange ] attrib
          val a_onforminput : Xml.event_handler -> [> `OnFormInput ] attrib
          val a_onhashchange : Xml.event_handler -> [> `OnHashChange ] attrib
          val a_oninput : Xml.event_handler -> [> `OnInput ] attrib
          val a_oninvalid : Xml.event_handler -> [> `OnInvalid ] attrib
          val a_onmousewheel : Xml.event_handler -> [> `OnMouseWheel ] attrib
          val a_onoffline : Xml.event_handler -> [> `OnOffLine ] attrib
          val a_ononline : Xml.event_handler -> [> `OnOnLine ] attrib
          val a_onpause : Xml.event_handler -> [> `OnPause ] attrib
          val a_onplay : Xml.event_handler -> [> `OnPlay ] attrib
          val a_onplaying : Xml.event_handler -> [> `OnPlaying ] attrib
          val a_onpagehide : Xml.event_handler -> [> `OnPageHide ] attrib
          val a_onpageshow : Xml.event_handler -> [> `OnPageShow ] attrib
          val a_onpopstate : Xml.event_handler -> [> `OnPopState ] attrib
          val a_onprogress : Xml.event_handler -> [> `OnProgress ] attrib
          val a_onratechange : Xml.event_handler -> [> `OnRateChange ] attrib
          val a_onreadystatechange :
            Xml.event_handler -> [> `OnReadyStateChange ] attrib
          val a_onredo : Xml.event_handler -> [> `OnRedo ] attrib
          val a_onresize : Xml.event_handler -> [> `OnResize ] attrib
          val a_onscroll : Xml.event_handler -> [> `OnScroll ] attrib
          val a_onseeked : Xml.event_handler -> [> `OnSeeked ] attrib
          val a_onseeking : Xml.event_handler -> [> `OnSeeking ] attrib
          val a_onselect : Xml.event_handler -> [> `OnSelect ] attrib
          val a_onshow : Xml.event_handler -> [> `OnShow ] attrib
          val a_onstalled : Xml.event_handler -> [> `OnStalled ] attrib
          val a_onstorage : Xml.event_handler -> [> `OnStorage ] attrib
          val a_onsubmit : Xml.event_handler -> [> `OnSubmit ] attrib
          val a_onsuspend : Xml.event_handler -> [> `OnSuspend ] attrib
          val a_ontimeupdate : Xml.event_handler -> [> `OnTimeUpdate ] attrib
          val a_onundo : Xml.event_handler -> [> `OnUndo ] attrib
          val a_onunload : Xml.event_handler -> [> `OnUnload ] attrib
          val a_onvolumechange :
            Xml.event_handler -> [> `OnVolumeChange ] attrib
          val a_onwaiting : Xml.event_handler -> [> `OnWaiting ] attrib
          val a_onload : Xml.event_handler -> [> `OnLoad ] attrib
          val a_onloadeddata : Xml.event_handler -> [> `OnLoadedData ] attrib
          val a_onloadedmetadata :
            Xml.event_handler -> [> `OnLoadedMetaData ] attrib
          val a_onloadstart : Xml.event_handler -> [> `OnLoadStart ] attrib
          val a_onmessage : Xml.event_handler -> [> `OnMessage ] attrib
          val a_onclick : Xml.mouse_event_handler -> [> `OnClick ] attrib
          val a_oncontextmenu :
            Xml.mouse_event_handler -> [> `OnContextMenu ] attrib
          val a_ondblclick :
            Xml.mouse_event_handler -> [> `OnDblClick ] attrib
          val a_ondrag : Xml.mouse_event_handler -> [> `OnDrag ] attrib
          val a_ondragend : Xml.mouse_event_handler -> [> `OnDragEnd ] attrib
          val a_ondragenter :
            Xml.mouse_event_handler -> [> `OnDragEnter ] attrib
          val a_ondragleave :
            Xml.mouse_event_handler -> [> `OnDragLeave ] attrib
          val a_ondragover :
            Xml.mouse_event_handler -> [> `OnDragOver ] attrib
          val a_ondragstart :
            Xml.mouse_event_handler -> [> `OnDragStart ] attrib
          val a_ondrop : Xml.mouse_event_handler -> [> `OnDrop ] attrib
          val a_onmousedown :
            Xml.mouse_event_handler -> [> `OnMouseDown ] attrib
          val a_onmouseup : Xml.mouse_event_handler -> [> `OnMouseUp ] attrib
          val a_onmouseover :
            Xml.mouse_event_handler -> [> `OnMouseOver ] attrib
          val a_onmousemove :
            Xml.mouse_event_handler -> [> `OnMouseMove ] attrib
          val a_onmouseout :
            Xml.mouse_event_handler -> [> `OnMouseOut ] attrib
          val a_ontouchstart :
            Xml.touch_event_handler -> [> `OnTouchStart ] attrib
          val a_ontouchend :
            Xml.touch_event_handler -> [> `OnTouchEnd ] attrib
          val a_ontouchmove :
            Xml.touch_event_handler -> [> `OnTouchMove ] attrib
          val a_ontouchcancel :
            Xml.touch_event_handler -> [> `OnTouchCancel ] attrib
          val a_onkeypress :
            Xml.keyboard_event_handler -> [> `OnKeyPress ] attrib
          val a_onkeydown :
            Xml.keyboard_event_handler -> [> `OnKeyDown ] attrib
          val a_onkeyup : Xml.keyboard_event_handler -> [> `OnKeyUp ] attrib
          val a_allowfullscreen : unit -> [> `Allowfullscreen ] attrib
          val a_allowpaymentrequest :
            unit -> [> `Allowpaymentrequest ] attrib
          val a_autocomplete : bool wrap -> [> `Autocomplete ] attrib
          val a_async : unit -> [> `Async ] attrib
          val a_autofocus : unit -> [> `Autofocus ] attrib
          val a_autoplay : unit -> [> `Autoplay ] attrib
          val a_muted : unit -> [> `Muted ] attrib
          val a_crossorigin :
            [< `Anonymous | `Use_credentials ] wrap ->
            [> `Crossorigin ] attrib
          val a_integrity : string wrap -> [> `Integrity ] attrib
          val a_mediagroup : string wrap -> [> `Mediagroup ] attrib
          val a_challenge : Html_types.text wrap -> [> `Challenge ] attrib
          val a_contenteditable : bool wrap -> [> `Contenteditable ] attrib
          val a_contextmenu :
            Html_types.idref wrap -> [> `Contextmenu ] attrib
          val a_controls : unit -> [> `Controls ] attrib
          val a_dir : [< `Ltr | `Rtl ] wrap -> [> `Dir ] attrib
          val a_draggable : bool wrap -> [> `Draggable ] attrib
          val a_form : Html_types.idref wrap -> [> `Form ] attrib
          val a_formaction : Xml.uri wrap -> [> `Formaction ] attrib
          val a_formenctype :
            Html_types.contenttype wrap -> [> `Formenctype ] attrib
          val a_formnovalidate : unit -> [> `Formnovalidate ] attrib
          val a_formtarget : Html_types.text wrap -> [> `Formtarget ] attrib
          val a_hidden : unit -> [> `Hidden ] attrib
          val a_high : Html_types.float_number wrap -> [> `High ] attrib
          val a_icon : Xml.uri wrap -> [> `Icon ] attrib
          val a_ismap : unit -> [> `Ismap ] attrib
          val a_keytype : Html_types.text wrap -> [> `Keytype ] attrib
          val a_list : Html_types.idref wrap -> [> `List ] attrib
          val a_loop : unit -> [> `Loop ] attrib
          val a_low : Html_types.float_number wrap -> [> `High ] attrib
          val a_max : Html_types.float_number wrap -> [> `Max ] attrib
          val a_input_max :
            Html_types.number_or_datetime wrap -> [> `Input_Max ] attrib
          val a_min : Html_types.float_number wrap -> [> `Min ] attrib
          val a_input_min :
            Html_types.number_or_datetime wrap -> [> `Input_Min ] attrib
          val a_inputmode :
            [< `Decimal
             | `Email
             | `None
             | `Numeric
             | `Search
             | `Tel
             | `Text
             | `Url ]
            wrap -> [> `Inputmode ] attrib
          val a_novalidate : unit -> [> `Novalidate ] attrib
          val a_open : unit -> [> `Open ] attrib
          val a_optimum :
            Html_types.float_number wrap -> [> `Optimum ] attrib
          val a_pattern : Html_types.text wrap -> [> `Pattern ] attrib
          val a_placeholder :
            Html_types.text wrap -> [> `Placeholder ] attrib
          val a_poster : Xml.uri wrap -> [> `Poster ] attrib
          val a_preload :
            [< `Audio | `Metadata | `None ] wrap -> [> `Preload ] attrib
          val a_pubdate : unit -> [> `Pubdate ] attrib
          val a_radiogroup : Html_types.text wrap -> [> `Radiogroup ] attrib
          val a_referrerpolicy :
            Html_types.referrerpolicy wrap -> [> `Referrerpolicy ] attrib
          val a_required : unit -> [> `Required ] attrib
          val a_reversed : unit -> [> `Reversed ] attrib
          val a_sandbox :
            [< Html_types.sandbox_token ] list wrap -> [> `Sandbox ] attrib
          val a_spellcheck : bool wrap -> [> `Spellcheck ] attrib
          val a_scoped : unit -> [> `Scoped ] attrib
          val a_seamless : unit -> [> `Seamless ] attrib
          val a_sizes :
            (Html_types.number * Html_types.number) list option wrap ->
            [> `Sizes ] attrib
          val a_span : Html_types.number wrap -> [> `Span ] attrib
          val a_srclang : Html_types.nmtoken wrap -> [> `XML_lang ] attrib
          type image_candidate =
              [ `Url of uri
              | `Url_pixel of uri * Html_types.float_number
              | `Url_width of uri * Html_types.number ]
          val a_srcset : image_candidate list wrap -> [> `Srcset ] attrib
          val a_img_sizes :
            Html_types.text list wrap -> [> `Img_sizes ] attrib
          val a_start : Html_types.number wrap -> [> `Start ] attrib
          val a_step :
            Html_types.float_number option wrap -> [> `Step ] attrib
          val a_translate : [< `No | `Yes ] wrap -> [> `Translate ] attrib
          val a_wrap : [< `Hard | `Soft ] wrap -> [> `Wrap ] attrib
          val a_version : Html_types.cdata wrap -> [> `Version ] attrib
          val a_xmlns : [< `W3_org_1999_xhtml ] wrap -> [> `XMLns ] attrib
          val a_manifest : Xml.uri wrap -> [> `Manifest ] attrib
          val a_cite : Xml.uri wrap -> [> `Cite ] attrib
          val a_xml_space :
            [< `Default | `Preserve ] wrap -> [> `XML_space ] attrib
          val a_accesskey :
            Html_types.character wrap -> [> `Accesskey ] attrib
          val a_charset : Html_types.charset wrap -> [> `Charset ] attrib
          val a_accept_charset :
            Html_types.charsets wrap -> [> `Accept_charset ] attrib
          val a_accept : Html_types.contenttypes wrap -> [> `Accept ] attrib
          val a_href : Xml.uri wrap -> [> `Href ] attrib
          val a_hreflang :
            Html_types.languagecode wrap -> [> `Hreflang ] attrib
          val a_download : string option wrap -> [> `Download ] attrib
          val a_rel : Html_types.linktypes wrap -> [> `Rel ] attrib
          val a_tabindex : Html_types.number wrap -> [> `Tabindex ] attrib
          val a_mime_type :
            Html_types.contenttype wrap -> [> `Mime_type ] attrib
          val a_datetime : Html_types.cdata wrap -> [> `Datetime ] attrib
          val a_action : Xml.uri wrap -> [> `Action ] attrib
          val a_checked : unit -> [> `Checked ] attrib
          val a_cols : Html_types.number wrap -> [> `Cols ] attrib
          val a_enctype : Html_types.contenttype wrap -> [> `Enctype ] attrib
          val a_label_for : Html_types.idref wrap -> [> `Label_for ] attrib
          val a_for : Html_types.idref wrap -> [> `Label_for ] attrib
          val a_output_for :
            Html_types.idrefs wrap -> [> `Output_for ] attrib
          val a_for_list : Html_types.idrefs wrap -> [> `Output_for ] attrib
          val a_maxlength : Html_types.number wrap -> [> `Maxlength ] attrib
          val a_minlength : Html_types.number wrap -> [> `Minlength ] attrib
          val a_method : [< `Get | `Post ] wrap -> [> `Method ] attrib
          val a_formmethod : [< `Get | `Post ] wrap -> [> `Method ] attrib
          val a_multiple : unit -> [> `Multiple ] attrib
          val a_name : Html_types.text wrap -> [> `Name ] attrib
          val a_rows : Html_types.number wrap -> [> `Rows ] attrib
          val a_selected : unit -> [> `Selected ] attrib
          val a_size : Html_types.number wrap -> [> `Size ] attrib
          val a_src : Xml.uri wrap -> [> `Src ] attrib
          val a_input_type :
            [< `Button
             | `Checkbox
             | `Color
             | `Date
             | `Datetime
             | `Datetime_local
             | `Email
             | `File
             | `Hidden
             | `Image
             | `Month
             | `Number
             | `Password
             | `Radio
             | `Range
             | `Reset
             | `Search
             | `Submit
             | `Tel
             | `Text
             | `Time
             | `Url
             | `Week ]
            wrap -> [> `Input_Type ] attrib
          val a_text_value : Html_types.text wrap -> [> `Text_Value ] attrib
          val a_int_value : Html_types.number wrap -> [> `Int_Value ] attrib
          val a_value : Html_types.cdata wrap -> [> `Value ] attrib
          val a_float_value :
            Html_types.float_number wrap -> [> `Float_Value ] attrib
          val a_disabled : unit -> [> `Disabled ] attrib
          val a_readonly : unit -> [> `ReadOnly ] attrib
          val a_button_type :
            [< `Button | `Reset | `Submit ] wrap -> [> `Button_Type ] attrib
          val a_command_type :
            [< `Checkbox | `Command | `Radio ] wrap ->
            [> `Command_Type ] attrib
          val a_menu_type :
            [< `Context | `Toolbar ] wrap -> [> `Menu_Type ] attrib
          val a_label : Html_types.text wrap -> [> `Label ] attrib
          val a_align :
            [< `Char | `Justify | `Left | `Right ] wrap -> [> `Align ] attrib
          val a_axis : Html_types.cdata wrap -> [> `Axis ] attrib
          val a_colspan : Html_types.number wrap -> [> `Colspan ] attrib
          val a_headers : Html_types.idrefs wrap -> [> `Headers ] attrib
          val a_rowspan : Html_types.number wrap -> [> `Rowspan ] attrib
          val a_scope :
            [< `Col | `Colgroup | `Row | `Rowgroup ] wrap ->
            [> `Scope ] attrib
          val a_summary : Html_types.text wrap -> [> `Summary ] attrib
          val a_border : Html_types.pixels wrap -> [> `Border ] attrib
          val a_rules :
            [< `All | `Cols | `Groups | `None | `Rows ] wrap ->
            [> `Rules ] attrib
          val a_char : Html_types.character wrap -> [> `Char ] attrib
          val a_alt : Html_types.text wrap -> [> `Alt ] attrib
          val a_height : Html_types.number wrap -> [> `Height ] attrib
          val a_width : Html_types.number wrap -> [> `Width ] attrib
          type shape = [ `Circle | `Default | `Poly | `Rect ]
          val a_shape : shape wrap -> [> `Shape ] attrib
          val a_coords : Html_types.numbers wrap -> [> `Coords ] attrib
          val a_usemap : Html_types.idref wrap -> [> `Usemap ] attrib
          val a_data : Xml.uri wrap -> [> `Data ] attrib
          val a_codetype :
            Html_types.contenttype wrap -> [> `Codetype ] attrib
          val a_frameborder :
            [< `One | `Zero ] wrap -> [> `Frameborder ] attrib
          val a_marginheight :
            Html_types.pixels wrap -> [> `Marginheight ] attrib
          val a_marginwidth :
            Html_types.pixels wrap -> [> `Marginwidth ] attrib
          val a_scrolling :
            [< `Auto | `No | `Yes ] wrap -> [> `Scrolling ] attrib
          val a_target : Html_types.frametarget wrap -> [> `Target ] attrib
          val a_content : Html_types.text wrap -> [> `Content ] attrib
          val a_http_equiv : Html_types.text wrap -> [> `Http_equiv ] attrib
          val a_defer : unit -> [> `Defer ] attrib
          val a_media : Html_types.mediadesc wrap -> [> `Media ] attrib
          val a_style : string wrap -> [> `Style_Attr ] attrib
          val a_property : string wrap -> [> `Property ] attrib
          val a_role : string list wrap -> [> `Role ] attrib
          val a_aria : string -> string list wrap -> [> `Aria ] attrib
          val txt : string wrap -> [> Html_types.txt ] elt
          val html :
            ?a:Html_types.html_attrib attrib list ->
            [< Html_types.head ] elt wrap ->
            [< Html_types.body ] elt wrap -> [> Html_types.html ] elt
          val head :
            ?a:Html_types.head_attrib attrib list ->
            [< Html_types.title ] elt wrap ->
            Html_types.head_content_fun elt list_wrap ->
            [> Html_types.head ] elt
          val base :
            ([< Html_types.base_attrib ], [> Html_types.base ]) nullary
          val title :
            (Html_types.title_attrib, [< Html_types.title_content_fun ],
             [> Html_types.title ])
            unary
          val body :
            ([< Html_types.body_attrib ], [< Html_types.body_content_fun ],
             [> Html_types.body ])
            star
          val svg :
            ?a:[< Html_types.svg_attrib ] Svg.D.Raw.attrib list ->
            [< Html_types.svg_content ] Svg.D.Raw.elt list_wrap ->
            [> Html_types.svg ] elt
          val footer :
            ([< Html_types.footer_attrib ],
             [< Html_types.footer_content_fun ], [> Html_types.footer ])
            star
          val header :
            ([< Html_types.header_attrib ],
             [< Html_types.header_content_fun ], [> Html_types.header ])
            star
          val section :
            ([< Html_types.section_attrib ],
             [< Html_types.section_content_fun ], [> Html_types.section ])
            star
          val nav :
            ([< Html_types.nav_attrib ], [< Html_types.nav_content_fun ],
             [> Html_types.nav ])
            star
          val h1 :
            ([< Html_types.h1_attrib ], [< Html_types.h1_content_fun ],
             [> Html_types.h1 ])
            star
          val h2 :
            ([< Html_types.h2_attrib ], [< Html_types.h2_content_fun ],
             [> Html_types.h2 ])
            star
          val h3 :
            ([< Html_types.h3_attrib ], [< Html_types.h3_content_fun ],
             [> Html_types.h3 ])
            star
          val h4 :
            ([< Html_types.h4_attrib ], [< Html_types.h4_content_fun ],
             [> Html_types.h4 ])
            star
          val h5 :
            ([< Html_types.h5_attrib ], [< Html_types.h5_content_fun ],
             [> Html_types.h5 ])
            star
          val h6 :
            ([< Html_types.h6_attrib ], [< Html_types.h6_content_fun ],
             [> Html_types.h6 ])
            star
          val hgroup :
            ([< Html_types.hgroup_attrib ],
             [< Html_types.hgroup_content_fun ], [> Html_types.hgroup ])
            star
          val address :
            ([< Html_types.address_attrib ],
             [< Html_types.address_content_fun ], [> Html_types.address ])
            star
          val article :
            ([< Html_types.article_attrib ],
             [< Html_types.article_content_fun ], [> Html_types.article ])
            star
          val aside :
            ([< Html_types.aside_attrib ], [< Html_types.aside_content_fun ],
             [> Html_types.aside ])
            star
          val main :
            ([< Html_types.main_attrib ], [< Html_types.main_content_fun ],
             [> Html_types.main ])
            star
          val p :
            ([< Html_types.p_attrib ], [< Html_types.p_content_fun ],
             [> Html_types.p ])
            star
          val pre :
            ([< Html_types.pre_attrib ], [< Html_types.pre_content_fun ],
             [> Html_types.pre ])
            star
          val blockquote :
            ([< Html_types.blockquote_attrib ],
             [< Html_types.blockquote_content_fun ],
             [> Html_types.blockquote ])
            star
          val div :
            ([< Html_types.div_attrib ], [< Html_types.div_content_fun ],
             [> Html_types.div ])
            star
          val dl :
            ([< Html_types.dl_attrib ], [< Html_types.dl_content_fun ],
             [> Html_types.dl ])
            star
          val ol :
            ([< Html_types.ol_attrib ], [< Html_types.ol_content_fun ],
             [> Html_types.ol ])
            star
          val ul :
            ([< Html_types.ul_attrib ], [< Html_types.ul_content_fun ],
             [> Html_types.ul ])
            star
          val dd :
            ([< Html_types.dd_attrib ], [< Html_types.dd_content_fun ],
             [> Html_types.dd ])
            star
          val dt :
            ([< Html_types.dt_attrib ], [< Html_types.dt_content_fun ],
             [> Html_types.dt ])
            star
          val li :
            ([< Html_types.li_attrib ], [< Html_types.li_content_fun ],
             [> Html_types.li ])
            star
          val figcaption :
            ([< Html_types.figcaption_attrib ],
             [< Html_types.figcaption_content_fun ],
             [> Html_types.figcaption ])
            star
          val figure :
            ?figcaption:[ `Bottom of [< Html_types.figcaption ] elt wrap
                        | `Top of [< Html_types.figcaption ] elt wrap ] ->
            ([< Html_types.figure_attrib ],
             [< Html_types.figure_content_fun ], [> Html_types.figure ])
            star
          val hr : ([< Html_types.hr_attrib ], [> Html_types.hr ]) nullary
          val b :
            ([< Html_types.b_attrib ], [< Html_types.b_content_fun ],
             [> Html_types.b ])
            star
          val i :
            ([< Html_types.i_attrib ], [< Html_types.i_content_fun ],
             [> Html_types.i ])
            star
          val u :
            ([< Html_types.u_attrib ], [< Html_types.u_content_fun ],
             [> Html_types.u ])
            star
          val small :
            ([< Html_types.small_attrib ], [< Html_types.small_content_fun ],
             [> Html_types.small ])
            star
          val sub :
            ([< Html_types.sub_attrib ], [< Html_types.sub_content_fun ],
             [> Html_types.sub ])
            star
          val sup :
            ([< Html_types.sup_attrib ], [< Html_types.sup_content_fun ],
             [> Html_types.sup ])
            star
          val mark :
            ([< Html_types.mark_attrib ], [< Html_types.mark_content_fun ],
             [> Html_types.mark ])
            star
          val wbr : ([< Html_types.wbr_attrib ], [> Html_types.wbr ]) nullary
          val bdo :
            dir:[< `Ltr | `Rtl ] wrap ->
            ([< Html_types.bdo_attrib ], [< Html_types.bdo_content_fun ],
             [> Html_types.bdo ])
            star
          val abbr :
            ([< Html_types.abbr_attrib ], [< Html_types.abbr_content_fun ],
             [> Html_types.abbr ])
            star
          val br : ([< Html_types.br_attrib ], [> Html_types.br ]) nullary
          val cite :
            ([< Html_types.cite_attrib ], [< Html_types.cite_content_fun ],
             [> Html_types.cite ])
            star
          val code :
            ([< Html_types.code_attrib ], [< Html_types.code_content_fun ],
             [> Html_types.code ])
            star
          val dfn :
            ([< Html_types.dfn_attrib ], [< Html_types.dfn_content_fun ],
             [> Html_types.dfn ])
            star
          val em :
            ([< Html_types.em_attrib ], [< Html_types.em_content_fun ],
             [> Html_types.em ])
            star
          val kbd :
            ([< Html_types.kbd_attrib ], [< Html_types.kbd_content_fun ],
             [> Html_types.kbd ])
            star
          val q :
            ([< Html_types.q_attrib ], [< Html_types.q_content_fun ],
             [> Html_types.q ])
            star
          val samp :
            ([< Html_types.samp_attrib ], [< Html_types.samp_content_fun ],
             [> Html_types.samp ])
            star
          val span :
            ([< Html_types.span_attrib ], [< Html_types.span_content_fun ],
             [> Html_types.span ])
            star
          val strong :
            ([< Html_types.strong_attrib ],
             [< Html_types.strong_content_fun ], [> Html_types.strong ])
            star
          val time :
            ([< Html_types.time_attrib ], [< Html_types.time_content_fun ],
             [> Html_types.time ])
            star
          val var :
            ([< Html_types.var_attrib ], [< Html_types.var_content_fun ],
             [> Html_types.var ])
            star
          val del :
            ([< Html_types.del_attrib ], 'a, [> 'Html_types.del ]) star
          val ins :
            ([< Html_types.ins_attrib ], 'a, [> 'Html_types.ins ]) star
          val img :
            src:Xml.uri wrap ->
            alt:Html_types.text wrap ->
            ([< Html_types.img_attrib ], [> Html_types.img ]) nullary
          val picture :
            img:[< Html_types.img ] elt wrap ->
            ([< Html_types.picture_attrib ],
             [< Html_types.picture_content_fun ], [> Html_types.picture ])
            star
          val iframe :
            ([< Html_types.iframe_attrib ],
             [< Html_types.iframe_content_fun ], [> Html_types.iframe ])
            star
          val object_ :
            ?params:[< Html_types.param ] elt list_wrap ->
            ([< Html_types.object__attrib ], 'a, [> `Object of 'a ]) star
          val param :
            ([< Html_types.param_attrib ], [> Html_types.param ]) nullary
          val embed :
            ([< Html_types.embed_attrib ], [> Html_types.embed ]) nullary
          val audio :
            ?src:Xml.uri wrap ->
            ?srcs:[< Html_types.source ] elt list_wrap ->
            ([< Html_types.audio_attrib ], 'a, [> 'Html_types.audio ]) star
          val video :
            ?src:Xml.uri wrap ->
            ?srcs:[< Html_types.source ] elt list_wrap ->
            ([< Html_types.video_attrib ], 'a, [> 'Html_types.video ]) star
          val canvas :
            ([< Html_types.canvas_attrib ], 'a, [> 'Html_types.canvas ])
            star
          val source :
            ([< Html_types.source_attrib ], [> Html_types.source ]) nullary
          val area :
            alt:Html_types.text wrap ->
            ([< `Accesskey
              | `Alt
              | `Aria
              | `Class
              | `Contenteditable
              | `Contextmenu
              | `Coords
              | `Dir
              | `Draggable
              | `Hidden
              | `Hreflang
              | `Id
              | `Lang
              | `Media
              | `Mime_type
              | `OnAbort
              | `OnBlur
              | `OnCanPlay
              | `OnCanPlayThrough
              | `OnChange
              | `OnClick
              | `OnContextMenu
              | `OnDblClick
              | `OnDrag
              | `OnDragEnd
              | `OnDragEnter
              | `OnDragLeave
              | `OnDragOver
              | `OnDragStart
              | `OnDrop
              | `OnDurationChange
              | `OnEmptied
              | `OnEnded
              | `OnError
              | `OnFocus
              | `OnFormChange
              | `OnFormInput
              | `OnInput
              | `OnInvalid
              | `OnKeyDown
              | `OnKeyPress
              | `OnKeyUp
              | `OnLoad
              | `OnLoadStart
              | `OnLoadedData
              | `OnLoadedMetaData
              | `OnMouseDown
              | `OnMouseMove
              | `OnMouseOut
              | `OnMouseOver
              | `OnMouseUp
              | `OnMouseWheel
              | `OnPause
              | `OnPlay
              | `OnPlaying
              | `OnProgress
              | `OnRateChange
              | `OnReadyStateChange
              | `OnScroll
              | `OnSeeked
              | `OnSeeking
              | `OnSelect
              | `OnShow
              | `OnStalled
              | `OnSubmit
              | `OnSuspend
              | `OnTimeUpdate
              | `OnTouchCancel
              | `OnTouchEnd
              | `OnTouchMove
              | `OnTouchStart
              | `OnVolumeChange
              | `OnWaiting
              | `Rel
              | `Role
              | `Shape
              | `Spellcheck
              | `Style_Attr
              | `Tabindex
              | `Target
              | `Title
              | `Translate
              | `User_data
              | `XML_lang
              | `XMLns ],
             [> Html_types.area ])
            nullary
          val map :
            ([< Html_types.map_attrib ], 'a, [> 'Html_types.map ]) star
          val caption :
            ([< Html_types.caption_attrib ],
             [< Html_types.caption_content_fun ], [> Html_types.caption ])
            star
          val table :
            ?caption:[< Html_types.caption ] elt wrap ->
            ?columns:[< Html_types.colgroup ] elt list_wrap ->
            ?thead:[< Html_types.thead ] elt wrap ->
            ?tfoot:[< Html_types.tfoot ] elt wrap ->
            ([< Html_types.table_attrib ], [< Html_types.table_content_fun ],
             [> Html_types.table ])
            star
          val tablex :
            ?caption:[< Html_types.caption ] elt wrap ->
            ?columns:[< Html_types.colgroup ] elt list_wrap ->
            ?thead:[< Html_types.thead ] elt wrap ->
            ?tfoot:[< Html_types.tfoot ] elt wrap ->
            ([< Html_types.tablex_attrib ],
             [< Html_types.tablex_content_fun ], [> Html_types.tablex ])
            star
          val colgroup :
            ([< Html_types.colgroup_attrib ],
             [< Html_types.colgroup_content_fun ], [> Html_types.colgroup ])
            star
          val col : ([< Html_types.col_attrib ], [> Html_types.col ]) nullary
          val thead :
            ([< Html_types.thead_attrib ], [< Html_types.thead_content_fun ],
             [> Html_types.thead ])
            star
          val tbody :
            ([< Html_types.tbody_attrib ], [< Html_types.tbody_content_fun ],
             [> Html_types.tbody ])
            star
          val tfoot :
            ([< Html_types.tfoot_attrib ], [< Html_types.tfoot_content_fun ],
             [> Html_types.tfoot ])
            star
          val td :
            ([< Html_types.td_attrib ], [< Html_types.td_content_fun ],
             [> Html_types.td ])
            star
          val th :
            ([< Html_types.th_attrib ], [< Html_types.th_content_fun ],
             [> Html_types.th ])
            star
          val tr :
            ([< Html_types.tr_attrib ], [< Html_types.tr_content_fun ],
             [> Html_types.tr ])
            star
          val form :
            ([< Html_types.form_attrib ], [< Html_types.form_content_fun ],
             [> Html_types.form ])
            star
          val fieldset :
            ?legend:[< Html_types.legend ] elt wrap ->
            ([< Html_types.fieldset_attrib ],
             [< Html_types.fieldset_content_fun ], [> Html_types.fieldset ])
            star
          val legend :
            ([< Html_types.legend_attrib ],
             [< Html_types.legend_content_fun ], [> Html_types.legend ])
            star
          val label :
            ([< Html_types.label_attrib ], [< Html_types.label_content_fun ],
             [> Html_types.label ])
            star
          val input :
            ([< Html_types.input_attrib ], [> Html_types.input ]) nullary
          val button :
            ([< Html_types.button_attrib ],
             [< Html_types.button_content_fun ], [> Html_types.button ])
            star
          val select :
            ([< Html_types.select_attrib ],
             [< Html_types.select_content_fun ], [> Html_types.select ])
            star
          val datalist :
            ?children:[< `Options of
                           [< Html_types.selectoption ] elt list_wrap
                       | `Phras of [< Html_types.phrasing ] elt list_wrap ] ->
            ([< Html_types.datalist_attrib ], [> Html_types.datalist ])
            nullary
          val optgroup :
            label:Html_types.text wrap ->
            ([< Html_types.optgroup_attrib ],
             [< Html_types.optgroup_content_fun ], [> Html_types.optgroup ])
            star
          val option :
            ([< Html_types.option_attrib ],
             [< Html_types.option_content_fun ],
             [> Html_types.selectoption ])
            unary
          val textarea :
            ([< Html_types.textarea_attrib ],
             [< Html_types.textarea_content_fun ], [> Html_types.textarea ])
            unary
          val keygen :
            ([< Html_types.keygen_attrib ], [> Html_types.keygen ]) nullary
          val progress :
            ([< Html_types.progress_attrib ],
             [< Html_types.progress_content_fun ], [> Html_types.progress ])
            star
          val meter :
            ([< Html_types.meter_attrib ], [< Html_types.meter_content_fun ],
             [> Html_types.meter ])
            star
          val output_elt :
            ([< Html_types.output_elt_attrib ],
             [< Html_types.output_elt_content_fun ],
             [> Html_types.output_elt ])
            star
          val entity : string -> [> Html_types.txt ] elt
          val space : unit -> [> Html_types.txt ] elt
          val cdata : string -> [> Html_types.txt ] elt
          val cdata_script : string -> [> Html_types.txt ] elt
          val cdata_style : string -> [> Html_types.txt ] elt
          val details :
            [< Html_types.summary ] elt wrap ->
            ([< Html_types.details_attrib ],
             [< Html_types.details_content_fun ], [> Html_types.details ])
            star
          val summary :
            ([< Html_types.summary_attrib ],
             [< Html_types.summary_content_fun ], [> Html_types.summary ])
            star
          val command :
            label:Html_types.text wrap ->
            ([< Html_types.command_attrib ], [> Html_types.command ]) nullary
          val menu :
            ?children:[< `Flows of [< Html_types.flow5 ] elt list_wrap
                       | `Lis of
                           [< `Li of [< Html_types.common ] ] elt list_wrap ] ->
            ([< Html_types.menu_attrib ], [> Html_types.menu ]) nullary
          val script :
            ([< Html_types.script_attrib ],
             [< Html_types.script_content_fun ], [> Html_types.script ])
            unary
          val noscript :
            ([< Html_types.noscript_attrib ],
             [< Html_types.noscript_content_fun ], [> Html_types.noscript ])
            star
          val template :
            ([< Html_types.template_attrib ],
             [< Html_types.template_content_fun ], [> Html_types.template ])
            star
          val meta :
            ([< Html_types.meta_attrib ], [> Html_types.meta ]) nullary
          val style :
            ([< Html_types.style_attrib ], [< Html_types.style_content_fun ],
             [> Html_types.style ])
            star
          val link :
            rel:Html_types.linktypes wrap ->
            href:Xml.uri wrap ->
            ([< Html_types.link_attrib ], [> Html_types.link ]) nullary
          val rt :
            ([< Html_types.rt_attrib ], [< Html_types.rt_content_fun ],
             [> Html_types.rt ])
            star
          val rp :
            ([< Html_types.rp_attrib ], [< Html_types.rp_content_fun ],
             [> Html_types.rp ])
            star
          val ruby :
            ([< Html_types.ruby_attrib ], [< Html_types.ruby_content_fun ],
             [> Html_types.ruby ])
            star
          val pcdata : string wrap -> [> Html_types.pcdata ] elt
          val of_seq : Xml_stream.signal Seq.t -> 'a elt list_wrap
          val tot : Xml.elt -> 'a elt
          val totl : Xml.elt list_wrap -> 'a elt list_wrap
          val toelt : 'a elt -> Xml.elt
          val toeltl : 'a elt list_wrap -> Xml.elt list_wrap
          val doc_toelt : doc -> Xml.elt
          val to_xmlattribs : 'a attrib list -> Xml.attrib list
          val to_attrib : Xml.attrib -> 'a attrib
          module Unsafe :
            sig
              val data : string wrap -> 'a elt
              val node :
                string -> ?a:'a attrib list -> 'b elt list_wrap -> 'c elt
              val leaf : string -> ?a:'a attrib list -> unit -> 'b elt
              val coerce_elt : 'a elt -> 'b elt
              val string_attrib : string -> string wrap -> 'a attrib
              val float_attrib : string -> float wrap -> 'a attrib
              val int_attrib : string -> int wrap -> 'a attrib
              val uri_attrib : string -> uri wrap -> 'a attrib
              val space_sep_attrib : string -> string list wrap -> 'a attrib
              val comma_sep_attrib : string -> string list wrap -> 'a attrib
            end
          type ('a, 'b, 'c) lazy_star =
              ?a:'a attrib list -> 'b elt list Eliom_lazy.request -> 'c elt
          val lazy_form :
            ([< Html_types.form_attrib ], [< Html_types.form_content_fun ],
             [> Html_types.form ])
            lazy_star
          val make_uri :
            ?absolute:bool ->
            ?absolute_path:bool ->
            ?https:bool ->
            service:('get, unit, Eliom_service.get, 'a, 'b, 'c, 'd,
                     [< `WithSuffix | `WithoutSuffix ], 'e, unit, 'f)
                    Eliom_service.t ->
            ?hostname:string ->
            ?port:int ->
            ?fragment:string ->
            ?keep_nl_params:[ `All | `None | `Persistent ] ->
            ?nl_params:Eliom_parameter.nl_params_set -> 'get -> uri
          val uri_of_string : (unit -> string) -> uri
          val css_link :
            ?a:[< Html_types.link_attrib ] attrib list ->
            uri:uri -> unit -> [> Html_types.link ] elt
          val js_script :
            ?a:[< Html_types.script_attrib ] attrib list ->
            uri:uri -> unit -> [> Html_types.script ] elt
          val a :
            ?absolute:bool ->
            ?absolute_path:bool ->
            ?https:bool ->
            ?a:[< Html_types.a_attrib ] attrib list ->
            service:('get, unit, Eliom_service.get, 'b, 'c, 'd, 'e,
                     [< `WithSuffix | `WithoutSuffix ], 'f, unit,
                     Eliom_service.non_ocaml)
                    Eliom_service.t ->
            ?hostname:string ->
            ?port:int ->
            ?fragment:string ->
            ?keep_nl_params:[ `All | `None | `Persistent ] ->
            ?nl_params:Eliom_parameter.nl_params_set ->
            ?xhr:bool -> 'a elt list -> 'get -> [> 'Html_types.a ] elt
          module Form :
            sig
              type 'a param = 'a form_param
              val float : float param
              val int : int param
              val int32 : int32 param
              val int64 : int64 param
              val nativeint : nativeint param
              val bool : bool param
              val string : string param
              val user : ('-> string) -> 'a param
              val make_post_uri_components :
                ?absolute:bool ->
                ?absolute_path:bool ->
                ?https:bool ->
                service:('get, 'post, Eliom_service.post, 'a, 'b, 'c, 'd,
                         [< `WithSuffix | `WithoutSuffix ], 'e, 'f, 'g)
                        Eliom_service.t ->
                ?hostname:string ->
                ?port:int ->
                ?fragment:string ->
                ?keep_nl_params:[ `All | `None | `Persistent ] ->
                ?nl_params:Eliom_parameter.nl_params_set ->
                ?keep_get_na_params:bool ->
                'get ->
                'post ->
                string * (string * Eliommod_parameters.param) list *
                string option * (string * Eliommod_parameters.param) list
              val get_form :
                ?absolute:bool ->
                ?absolute_path:bool ->
                ?https:bool ->
                ?a:[< Html_types.form_attrib ] attrib list ->
                service:('a, unit, Eliom_service.get, 'b, 'c, 'd, 'e,
                         [< `WithSuffix | `WithoutSuffix ], 'gn, 'f,
                         Eliom_service.non_ocaml)
                        Eliom_service.t ->
                ?hostname:string ->
                ?port:int ->
                ?fragment:string ->
                ?keep_nl_params:[ `All | `None | `Persistent ] ->
                ?nl_params:Eliom_parameter.nl_params_set ->
                ?xhr:bool ->
                ('gn -> [< Html_types.form_content ] elt list) ->
                [> Html_types.form ] elt
              val lwt_get_form :
                ?absolute:bool ->
                ?absolute_path:bool ->
                ?https:bool ->
                ?a:[< Html_types.form_attrib ] attrib list ->
                service:('a, unit, Eliom_service.get, 'b, 'c, 'd, 'e,
                         [< `WithSuffix | `WithoutSuffix ], 'gn, 'f,
                         Eliom_service.non_ocaml)
                        Eliom_service.t ->
                ?hostname:string ->
                ?port:int ->
                ?fragment:string ->
                ?keep_nl_params:[ `All | `None | `Persistent ] ->
                ?nl_params:Eliom_parameter.nl_params_set ->
                ?xhr:bool ->
                ('gn -> [< Html_types.form_content ] elt list Lwt.t) ->
                [> Html_types.form ] elt Lwt.t
              val post_form :
                ?absolute:bool ->
                ?absolute_path:bool ->
                ?https:bool ->
                ?a:[< Html_types.form_attrib ] attrib list ->
                service:('get, 'a, Eliom_service.post, 'b, 'c, 'd, 'e,
                         [< `WithSuffix | `WithoutSuffix ], 'f, 'pn,
                         Eliom_service.non_ocaml)
                        Eliom_service.t ->
                ?hostname:string ->
                ?port:int ->
                ?fragment:string ->
                ?keep_nl_params:[ `All | `None | `Persistent ] ->
                ?keep_get_na_params:bool ->
                ?nl_params:Eliom_parameter.nl_params_set ->
                ?xhr:bool ->
                ('pn -> [< Html_types.form_content ] elt list) ->
                'get -> [> Html_types.form ] elt
              val lwt_post_form :
                ?absolute:bool ->
                ?absolute_path:bool ->
                ?https:bool ->
                ?a:[< Html_types.form_attrib ] attrib list ->
                service:('get, 'a, Eliom_service.post, 'b, 'c, 'd, 'e,
                         [< `WithSuffix | `WithoutSuffix ], 'f, 'pn,
                         Eliom_service.non_ocaml)
                        Eliom_service.t ->
                ?hostname:string ->
                ?port:int ->
                ?fragment:string ->
                ?keep_nl_params:[ `All | `None | `Persistent ] ->
                ?keep_get_na_params:bool ->
                ?nl_params:Eliom_parameter.nl_params_set ->
                ?xhr:bool ->
                ('pn -> [< Html_types.form_content ] elt list Lwt.t) ->
                'get -> [> Html_types.form ] elt Lwt.t
              val input :
                ?a:[< Html_types.input_attrib ] attrib list ->
                input_type:[< Html_types.input_type ] ->
                ?name:[< 'Eliom_parameter.setoneradio ]
                      Eliom_parameter.param_name ->
                ?value:'-> 'a param -> [> Html_types.input ] elt
              val file_input :
                ?a:[< Html_types.input_attrib ] attrib list ->
                name:[< Eliom_lib.file_info Eliom_parameter.setoneradio ]
                     Eliom_parameter.param_name ->
                unit -> [> Html_types.input ] elt
              val image_input :
                ?a:[< Html_types.input_attrib ] attrib list ->
                name:[< Eliom_parameter.coordinates Eliom_parameter.oneradio
                     ] Eliom_parameter.param_name ->
                ?src:uri -> unit -> [> Html_types.input ] elt
              val checkbox :
                ?a:[< Html_types.input_attrib ] attrib list ->
                ?checked:bool ->
                name:[ `Set of 'a ] Eliom_parameter.param_name ->
                value:'-> 'a param -> [> Html_types.input ] elt
              val bool_checkbox_one :
                ?a:[< Html_types.input_attrib ] attrib list ->
                ?checked:bool ->
                name:[ `One of bool ] Eliom_parameter.param_name ->
                unit -> [> Html_types.input ] elt
              val radio :
                ?a:[< Html_types.input_attrib ] attrib list ->
                ?checked:bool ->
                name:[ `Radio of 'a ] Eliom_parameter.param_name ->
                value:'-> 'a param -> [> Html_types.input ] elt
              val string_radio_required :
                ?a:[< Html_types.input_attrib ] attrib list ->
                ?checked:bool ->
                name:[ `One of string ] Eliom_parameter.param_name ->
                value:string -> unit -> [> Html_types.input ] elt
              val button :
                ?a:[< Html_types.button_attrib ] attrib list ->
                button_type:[< Eliom_form_sigs.button_type ] ->
                name:[< 'Eliom_parameter.setone ]
                     Eliom_parameter.param_name ->
                value:'->
                'a param ->
                Html_types.button_content elt list ->
                [> Html_types.button ] elt
              val button_no_value :
                ?a:[< Html_types.button_attrib ] attrib list ->
                button_type:[< Eliom_form_sigs.button_type ] ->
                Html_types.button_content elt list ->
                [> Html_types.button ] elt
              val textarea :
                ?a:[< Html_types.textarea_attrib ] attrib list ->
                name:[< string Eliom_parameter.setoneradio ]
                     Eliom_parameter.param_name ->
                ?value:string -> unit -> [> Html_types.textarea ] elt
              type 'a soption =
                  Html_types.option_attrib attrib list * 'a *
                  Html_types.pcdata elt option * bool
              type 'a select_opt =
                  Optgroup of
                    [ `Accesskey
                    | `Aria
                    | `Class
                    | `Contenteditable
                    | `Contextmenu
                    | `Dir
                    | `Disabled
                    | `Draggable
                    | `Hidden
                    | `Id
                    | `Lang
                    | `OnAbort
                    | `OnBlur
                    | `OnCanPlay
                    | `OnCanPlayThrough
                    | `OnChange
                    | `OnClick
                    | `OnContextMenu
                    | `OnDblClick
                    | `OnDrag
                    | `OnDragEnd
                    | `OnDragEnter
                    | `OnDragLeave
                    | `OnDragOver
                    | `OnDragStart
                    | `OnDrop
                    | `OnDurationChange
                    | `OnEmptied
                    | `OnEnded
                    | `OnError
                    | `OnFocus
                    | `OnFormChange
                    | `OnFormInput
                    | `OnInput
                    | `OnInvalid
                    | `OnKeyDown
                    | `OnKeyPress
                    | `OnKeyUp
                    | `OnLoad
                    | `OnLoadStart
                    | `OnLoadedData
                    | `OnLoadedMetaData
                    | `OnMouseDown
                    | `OnMouseMove
                    | `OnMouseOut
                    | `OnMouseOver
                    | `OnMouseUp
                    | `OnMouseWheel
                    | `OnPause
                    | `OnPlay
                    | `OnPlaying
                    | `OnProgress
                    | `OnRateChange
                    | `OnReadyStateChange
                    | `OnScroll
                    | `OnSeeked
                    | `OnSeeking
                    | `OnSelect
                    | `OnShow
                    | `OnStalled
                    | `OnSubmit
                    | `OnSuspend
                    | `OnTimeUpdate
                    | `OnTouchCancel
                    | `OnTouchEnd
                    | `OnTouchMove
                    | `OnTouchStart
                    | `OnVolumeChange
                    | `OnWaiting
                    | `Role
                    | `Spellcheck
                    | `Style_Attr
                    | `Tabindex
                    | `Title
                    | `Translate
                    | `User_data
                    | `XML_lang
                    | `XMLns ] attrib list * string * 'a soption *
                    'a soption list
                | Option of 'a soption
              val select :
                ?a:[< Html_types.select_attrib ] attrib list ->
                ?required:Html_types.pcdata elt ->
                name:[ `One of 'a ] Eliom_parameter.param_name ->
                'a param ->
                'a select_opt ->
                'a select_opt list -> [> Html_types.select ] elt
              val multiple_select :
                ?a:[< Html_types.select_attrib ] attrib list ->
                ?required:Html_types.pcdata elt ->
                name:[ `Set of 'a ] Eliom_parameter.param_name ->
                'a param ->
                'a select_opt ->
                'a select_opt list -> [> Html_types.select ] elt
            end
        end
      module R :
        sig
          val node :
            'Eliom_content.Html.elt React.signal Eliom_client_value.t ->
            'Eliom_content.Html.elt
          val filter_attrib :
            'Eliom_content.Html.attrib ->
            bool React.signal -> 'Eliom_content.Html.attrib
          module Raw :
            sig
              type 'a elt = 'a elt
              type doc = Html_types.html elt
              type 'a attrib = 'a attrib
              module Xml :
                sig
                  module W :
                    sig
                      type 'a t = 'Eliom_content_core.Xml_wed.W.t
                      val return : '-> 'a t
                      type ('a, 'b) ft =
                          ('a, 'b) Eliom_content_core.Xml_wed.W.ft
                      val fmap : ('a, 'b) ft -> 'a t -> 'b t
                      type 'a tlist = 'Eliom_content_core.Xml_wed.W.tlist
                      val nil : unit -> 'a tlist
                      val singleton : 'a t -> 'a tlist
                      val cons : 'a t -> 'a tlist -> 'a tlist
                      val append : 'a tlist -> 'a tlist -> 'a tlist
                      val map : ('a, 'b) ft -> 'a tlist -> 'b tlist
                    end
                  type 'a wrap = 'W.t
                  type 'a list_wrap = 'W.tlist
                  type uri = Eliom_content_core.Xml_wed.uri
                  val string_of_uri : (uri, string) W.ft
                  val uri_of_string : (string, uri) W.ft
                  type aname = string
                  type event_handler =
                      Eliom_content_core.Xml_wed.event_handler
                  type mouse_event_handler =
                      Eliom_content_core.Xml_wed.mouse_event_handler
                  type keyboard_event_handler =
                      Eliom_content_core.Xml_wed.keyboard_event_handler
                  type touch_event_handler =
                      Eliom_content_core.Xml_wed.touch_event_handler
                  type attrib = Eliom_content_core.Xml_wed.attrib
                  val float_attrib : aname -> float wrap -> attrib
                  val int_attrib : aname -> int wrap -> attrib
                  val string_attrib : aname -> string wrap -> attrib
                  val space_sep_attrib : aname -> string list wrap -> attrib
                  val comma_sep_attrib : aname -> string list wrap -> attrib
                  val event_handler_attrib : aname -> event_handler -> attrib
                  val mouse_event_handler_attrib :
                    aname -> mouse_event_handler -> attrib
                  val keyboard_event_handler_attrib :
                    aname -> keyboard_event_handler -> attrib
                  val touch_event_handler_attrib :
                    aname -> touch_event_handler -> attrib
                  val uri_attrib : aname -> uri wrap -> attrib
                  val uris_attrib : aname -> uri list wrap -> attrib
                  type elt = Eliom_content_core.Xml_wed.elt
                  type ename = string
                  val empty : unit -> elt
                  val comment : string -> elt
                  val pcdata : string wrap -> elt
                  val encodedpcdata : string wrap -> elt
                  val entity : string -> elt
                  val leaf : ?a:attrib list -> ename -> elt
                  val node : ?a:attrib list -> ename -> elt list_wrap -> elt
                  val cdata : string -> elt
                  val cdata_script : string -> elt
                  val cdata_style : string -> elt
                end
              type 'a wrap = 'Xml.W.t
              type 'a list_wrap = 'Xml.W.tlist
              type ('a, 'b) nullary = ?a:'a attrib list -> unit -> 'b elt
              type ('a, 'b, 'c) unary =
                  ?a:'a attrib list -> 'b elt wrap -> 'c elt
              type ('a, 'b, 'c) star =
                  ?a:'a attrib list -> 'b elt list_wrap -> 'c elt
              module Info : Xml_sigs.Info
              type uri = Xml.uri
              val string_of_uri : (uri, string) Xml.W.ft
              val uri_of_string : (string, uri) Xml.W.ft
              val a_class : Html_types.nmtokens wrap -> [> `Class ] attrib
              val a_user_data :
                Html_types.nmtoken ->
                Html_types.text wrap -> [> `User_data ] attrib
              val a_id : Html_types.text wrap -> [> `Id ] attrib
              val a_title : Html_types.text wrap -> [> `Title ] attrib
              val a_xml_lang :
                Html_types.languagecode wrap -> [> `XML_lang ] attrib
              val a_lang : Html_types.languagecode wrap -> [> `Lang ] attrib
              val a_onabort : Xml.event_handler -> [> `OnAbort ] attrib
              val a_onafterprint :
                Xml.event_handler -> [> `OnAfterPrint ] attrib
              val a_onbeforeprint :
                Xml.event_handler -> [> `OnBeforePrint ] attrib
              val a_onbeforeunload :
                Xml.event_handler -> [> `OnBeforeUnload ] attrib
              val a_onblur : Xml.event_handler -> [> `OnBlur ] attrib
              val a_oncanplay : Xml.event_handler -> [> `OnCanPlay ] attrib
              val a_oncanplaythrough :
                Xml.event_handler -> [> `OnCanPlayThrough ] attrib
              val a_onchange : Xml.event_handler -> [> `OnChange ] attrib
              val a_ondurationchange :
                Xml.event_handler -> [> `OnDurationChange ] attrib
              val a_onemptied : Xml.event_handler -> [> `OnEmptied ] attrib
              val a_onended : Xml.event_handler -> [> `OnEnded ] attrib
              val a_onerror : Xml.event_handler -> [> `OnError ] attrib
              val a_onfocus : Xml.event_handler -> [> `OnFocus ] attrib
              val a_onformchange :
                Xml.event_handler -> [> `OnFormChange ] attrib
              val a_onforminput :
                Xml.event_handler -> [> `OnFormInput ] attrib
              val a_onhashchange :
                Xml.event_handler -> [> `OnHashChange ] attrib
              val a_oninput : Xml.event_handler -> [> `OnInput ] attrib
              val a_oninvalid : Xml.event_handler -> [> `OnInvalid ] attrib
              val a_onmousewheel :
                Xml.event_handler -> [> `OnMouseWheel ] attrib
              val a_onoffline : Xml.event_handler -> [> `OnOffLine ] attrib
              val a_ononline : Xml.event_handler -> [> `OnOnLine ] attrib
              val a_onpause : Xml.event_handler -> [> `OnPause ] attrib
              val a_onplay : Xml.event_handler -> [> `OnPlay ] attrib
              val a_onplaying : Xml.event_handler -> [> `OnPlaying ] attrib
              val a_onpagehide : Xml.event_handler -> [> `OnPageHide ] attrib
              val a_onpageshow : Xml.event_handler -> [> `OnPageShow ] attrib
              val a_onpopstate : Xml.event_handler -> [> `OnPopState ] attrib
              val a_onprogress : Xml.event_handler -> [> `OnProgress ] attrib
              val a_onratechange :
                Xml.event_handler -> [> `OnRateChange ] attrib
              val a_onreadystatechange :
                Xml.event_handler -> [> `OnReadyStateChange ] attrib
              val a_onredo : Xml.event_handler -> [> `OnRedo ] attrib
              val a_onresize : Xml.event_handler -> [> `OnResize ] attrib
              val a_onscroll : Xml.event_handler -> [> `OnScroll ] attrib
              val a_onseeked : Xml.event_handler -> [> `OnSeeked ] attrib
              val a_onseeking : Xml.event_handler -> [> `OnSeeking ] attrib
              val a_onselect : Xml.event_handler -> [> `OnSelect ] attrib
              val a_onshow : Xml.event_handler -> [> `OnShow ] attrib
              val a_onstalled : Xml.event_handler -> [> `OnStalled ] attrib
              val a_onstorage : Xml.event_handler -> [> `OnStorage ] attrib
              val a_onsubmit : Xml.event_handler -> [> `OnSubmit ] attrib
              val a_onsuspend : Xml.event_handler -> [> `OnSuspend ] attrib
              val a_ontimeupdate :
                Xml.event_handler -> [> `OnTimeUpdate ] attrib
              val a_onundo : Xml.event_handler -> [> `OnUndo ] attrib
              val a_onunload : Xml.event_handler -> [> `OnUnload ] attrib
              val a_onvolumechange :
                Xml.event_handler -> [> `OnVolumeChange ] attrib
              val a_onwaiting : Xml.event_handler -> [> `OnWaiting ] attrib
              val a_onload : Xml.event_handler -> [> `OnLoad ] attrib
              val a_onloadeddata :
                Xml.event_handler -> [> `OnLoadedData ] attrib
              val a_onloadedmetadata :
                Xml.event_handler -> [> `OnLoadedMetaData ] attrib
              val a_onloadstart :
                Xml.event_handler -> [> `OnLoadStart ] attrib
              val a_onmessage : Xml.event_handler -> [> `OnMessage ] attrib
              val a_onclick : Xml.mouse_event_handler -> [> `OnClick ] attrib
              val a_oncontextmenu :
                Xml.mouse_event_handler -> [> `OnContextMenu ] attrib
              val a_ondblclick :
                Xml.mouse_event_handler -> [> `OnDblClick ] attrib
              val a_ondrag : Xml.mouse_event_handler -> [> `OnDrag ] attrib
              val a_ondragend :
                Xml.mouse_event_handler -> [> `OnDragEnd ] attrib
              val a_ondragenter :
                Xml.mouse_event_handler -> [> `OnDragEnter ] attrib
              val a_ondragleave :
                Xml.mouse_event_handler -> [> `OnDragLeave ] attrib
              val a_ondragover :
                Xml.mouse_event_handler -> [> `OnDragOver ] attrib
              val a_ondragstart :
                Xml.mouse_event_handler -> [> `OnDragStart ] attrib
              val a_ondrop : Xml.mouse_event_handler -> [> `OnDrop ] attrib
              val a_onmousedown :
                Xml.mouse_event_handler -> [> `OnMouseDown ] attrib
              val a_onmouseup :
                Xml.mouse_event_handler -> [> `OnMouseUp ] attrib
              val a_onmouseover :
                Xml.mouse_event_handler -> [> `OnMouseOver ] attrib
              val a_onmousemove :
                Xml.mouse_event_handler -> [> `OnMouseMove ] attrib
              val a_onmouseout :
                Xml.mouse_event_handler -> [> `OnMouseOut ] attrib
              val a_ontouchstart :
                Xml.touch_event_handler -> [> `OnTouchStart ] attrib
              val a_ontouchend :
                Xml.touch_event_handler -> [> `OnTouchEnd ] attrib
              val a_ontouchmove :
                Xml.touch_event_handler -> [> `OnTouchMove ] attrib
              val a_ontouchcancel :
                Xml.touch_event_handler -> [> `OnTouchCancel ] attrib
              val a_onkeypress :
                Xml.keyboard_event_handler -> [> `OnKeyPress ] attrib
              val a_onkeydown :
                Xml.keyboard_event_handler -> [> `OnKeyDown ] attrib
              val a_onkeyup :
                Xml.keyboard_event_handler -> [> `OnKeyUp ] attrib
              val a_allowfullscreen : unit -> [> `Allowfullscreen ] attrib
              val a_allowpaymentrequest :
                unit -> [> `Allowpaymentrequest ] attrib
              val a_autocomplete : bool wrap -> [> `Autocomplete ] attrib
              val a_async : unit -> [> `Async ] attrib
              val a_autofocus : unit -> [> `Autofocus ] attrib
              val a_autoplay : unit -> [> `Autoplay ] attrib
              val a_muted : unit -> [> `Muted ] attrib
              val a_crossorigin :
                [< `Anonymous | `Use_credentials ] wrap ->
                [> `Crossorigin ] attrib
              val a_integrity : string wrap -> [> `Integrity ] attrib
              val a_mediagroup : string wrap -> [> `Mediagroup ] attrib
              val a_challenge :
                Html_types.text wrap -> [> `Challenge ] attrib
              val a_contenteditable :
                bool wrap -> [> `Contenteditable ] attrib
              val a_contextmenu :
                Html_types.idref wrap -> [> `Contextmenu ] attrib
              val a_controls : unit -> [> `Controls ] attrib
              val a_dir : [< `Ltr | `Rtl ] wrap -> [> `Dir ] attrib
              val a_draggable : bool wrap -> [> `Draggable ] attrib
              val a_form : Html_types.idref wrap -> [> `Form ] attrib
              val a_formaction : Xml.uri wrap -> [> `Formaction ] attrib
              val a_formenctype :
                Html_types.contenttype wrap -> [> `Formenctype ] attrib
              val a_formnovalidate : unit -> [> `Formnovalidate ] attrib
              val a_formtarget :
                Html_types.text wrap -> [> `Formtarget ] attrib
              val a_hidden : unit -> [> `Hidden ] attrib
              val a_high : Html_types.float_number wrap -> [> `High ] attrib
              val a_icon : Xml.uri wrap -> [> `Icon ] attrib
              val a_ismap : unit -> [> `Ismap ] attrib
              val a_keytype : Html_types.text wrap -> [> `Keytype ] attrib
              val a_list : Html_types.idref wrap -> [> `List ] attrib
              val a_loop : unit -> [> `Loop ] attrib
              val a_low : Html_types.float_number wrap -> [> `High ] attrib
              val a_max : Html_types.float_number wrap -> [> `Max ] attrib
              val a_input_max :
                Html_types.number_or_datetime wrap -> [> `Input_Max ] attrib
              val a_min : Html_types.float_number wrap -> [> `Min ] attrib
              val a_input_min :
                Html_types.number_or_datetime wrap -> [> `Input_Min ] attrib
              val a_inputmode :
                [< `Decimal
                 | `Email
                 | `None
                 | `Numeric
                 | `Search
                 | `Tel
                 | `Text
                 | `Url ]
                wrap -> [> `Inputmode ] attrib
              val a_novalidate : unit -> [> `Novalidate ] attrib
              val a_open : unit -> [> `Open ] attrib
              val a_optimum :
                Html_types.float_number wrap -> [> `Optimum ] attrib
              val a_pattern : Html_types.text wrap -> [> `Pattern ] attrib
              val a_placeholder :
                Html_types.text wrap -> [> `Placeholder ] attrib
              val a_poster : Xml.uri wrap -> [> `Poster ] attrib
              val a_preload :
                [< `Audio | `Metadata | `None ] wrap -> [> `Preload ] attrib
              val a_pubdate : unit -> [> `Pubdate ] attrib
              val a_radiogroup :
                Html_types.text wrap -> [> `Radiogroup ] attrib
              val a_referrerpolicy :
                Html_types.referrerpolicy wrap -> [> `Referrerpolicy ] attrib
              val a_required : unit -> [> `Required ] attrib
              val a_reversed : unit -> [> `Reversed ] attrib
              val a_sandbox :
                [< Html_types.sandbox_token ] list wrap ->
                [> `Sandbox ] attrib
              val a_spellcheck : bool wrap -> [> `Spellcheck ] attrib
              val a_scoped : unit -> [> `Scoped ] attrib
              val a_seamless : unit -> [> `Seamless ] attrib
              val a_sizes :
                (Html_types.number * Html_types.number) list option wrap ->
                [> `Sizes ] attrib
              val a_span : Html_types.number wrap -> [> `Span ] attrib
              val a_srclang :
                Html_types.nmtoken wrap -> [> `XML_lang ] attrib
              type image_candidate =
                  [ `Url of uri
                  | `Url_pixel of uri * Html_types.float_number
                  | `Url_width of uri * Html_types.number ]
              val a_srcset : image_candidate list wrap -> [> `Srcset ] attrib
              val a_img_sizes :
                Html_types.text list wrap -> [> `Img_sizes ] attrib
              val a_start : Html_types.number wrap -> [> `Start ] attrib
              val a_step :
                Html_types.float_number option wrap -> [> `Step ] attrib
              val a_translate :
                [< `No | `Yes ] wrap -> [> `Translate ] attrib
              val a_wrap : [< `Hard | `Soft ] wrap -> [> `Wrap ] attrib
              val a_version : Html_types.cdata wrap -> [> `Version ] attrib
              val a_xmlns :
                [< `W3_org_1999_xhtml ] wrap -> [> `XMLns ] attrib
              val a_manifest : Xml.uri wrap -> [> `Manifest ] attrib
              val a_cite : Xml.uri wrap -> [> `Cite ] attrib
              val a_xml_space :
                [< `Default | `Preserve ] wrap -> [> `XML_space ] attrib
              val a_accesskey :
                Html_types.character wrap -> [> `Accesskey ] attrib
              val a_charset : Html_types.charset wrap -> [> `Charset ] attrib
              val a_accept_charset :
                Html_types.charsets wrap -> [> `Accept_charset ] attrib
              val a_accept :
                Html_types.contenttypes wrap -> [> `Accept ] attrib
              val a_href : Xml.uri wrap -> [> `Href ] attrib
              val a_hreflang :
                Html_types.languagecode wrap -> [> `Hreflang ] attrib
              val a_download : string option wrap -> [> `Download ] attrib
              val a_rel : Html_types.linktypes wrap -> [> `Rel ] attrib
              val a_tabindex :
                Html_types.number wrap -> [> `Tabindex ] attrib
              val a_mime_type :
                Html_types.contenttype wrap -> [> `Mime_type ] attrib
              val a_datetime : Html_types.cdata wrap -> [> `Datetime ] attrib
              val a_action : Xml.uri wrap -> [> `Action ] attrib
              val a_checked : unit -> [> `Checked ] attrib
              val a_cols : Html_types.number wrap -> [> `Cols ] attrib
              val a_enctype :
                Html_types.contenttype wrap -> [> `Enctype ] attrib
              val a_label_for :
                Html_types.idref wrap -> [> `Label_for ] attrib
              val a_for : Html_types.idref wrap -> [> `Label_for ] attrib
              val a_output_for :
                Html_types.idrefs wrap -> [> `Output_for ] attrib
              val a_for_list :
                Html_types.idrefs wrap -> [> `Output_for ] attrib
              val a_maxlength :
                Html_types.number wrap -> [> `Maxlength ] attrib
              val a_minlength :
                Html_types.number wrap -> [> `Minlength ] attrib
              val a_method : [< `Get | `Post ] wrap -> [> `Method ] attrib
              val a_formmethod :
                [< `Get | `Post ] wrap -> [> `Method ] attrib
              val a_multiple : unit -> [> `Multiple ] attrib
              val a_name : Html_types.text wrap -> [> `Name ] attrib
              val a_rows : Html_types.number wrap -> [> `Rows ] attrib
              val a_selected : unit -> [> `Selected ] attrib
              val a_size : Html_types.number wrap -> [> `Size ] attrib
              val a_src : Xml.uri wrap -> [> `Src ] attrib
              val a_input_type :
                [< `Button
                 | `Checkbox
                 | `Color
                 | `Date
                 | `Datetime
                 | `Datetime_local
                 | `Email
                 | `File
                 | `Hidden
                 | `Image
                 | `Month
                 | `Number
                 | `Password
                 | `Radio
                 | `Range
                 | `Reset
                 | `Search
                 | `Submit
                 | `Tel
                 | `Text
                 | `Time
                 | `Url
                 | `Week ]
                wrap -> [> `Input_Type ] attrib
              val a_text_value :
                Html_types.text wrap -> [> `Text_Value ] attrib
              val a_int_value :
                Html_types.number wrap -> [> `Int_Value ] attrib
              val a_value : Html_types.cdata wrap -> [> `Value ] attrib
              val a_float_value :
                Html_types.float_number wrap -> [> `Float_Value ] attrib
              val a_disabled : unit -> [> `Disabled ] attrib
              val a_readonly : unit -> [> `ReadOnly ] attrib
              val a_button_type :
                [< `Button | `Reset | `Submit ] wrap ->
                [> `Button_Type ] attrib
              val a_command_type :
                [< `Checkbox | `Command | `Radio ] wrap ->
                [> `Command_Type ] attrib
              val a_menu_type :
                [< `Context | `Toolbar ] wrap -> [> `Menu_Type ] attrib
              val a_label : Html_types.text wrap -> [> `Label ] attrib
              val a_align :
                [< `Char | `Justify | `Left | `Right ] wrap ->
                [> `Align ] attrib
              val a_axis : Html_types.cdata wrap -> [> `Axis ] attrib
              val a_colspan : Html_types.number wrap -> [> `Colspan ] attrib
              val a_headers : Html_types.idrefs wrap -> [> `Headers ] attrib
              val a_rowspan : Html_types.number wrap -> [> `Rowspan ] attrib
              val a_scope :
                [< `Col | `Colgroup | `Row | `Rowgroup ] wrap ->
                [> `Scope ] attrib
              val a_summary : Html_types.text wrap -> [> `Summary ] attrib
              val a_border : Html_types.pixels wrap -> [> `Border ] attrib
              val a_rules :
                [< `All | `Cols | `Groups | `None | `Rows ] wrap ->
                [> `Rules ] attrib
              val a_char : Html_types.character wrap -> [> `Char ] attrib
              val a_alt : Html_types.text wrap -> [> `Alt ] attrib
              val a_height : Html_types.number wrap -> [> `Height ] attrib
              val a_width : Html_types.number wrap -> [> `Width ] attrib
              type shape = [ `Circle | `Default | `Poly | `Rect ]
              val a_shape : shape wrap -> [> `Shape ] attrib
              val a_coords : Html_types.numbers wrap -> [> `Coords ] attrib
              val a_usemap : Html_types.idref wrap -> [> `Usemap ] attrib
              val a_data : Xml.uri wrap -> [> `Data ] attrib
              val a_codetype :
                Html_types.contenttype wrap -> [> `Codetype ] attrib
              val a_frameborder :
                [< `One | `Zero ] wrap -> [> `Frameborder ] attrib
              val a_marginheight :
                Html_types.pixels wrap -> [> `Marginheight ] attrib
              val a_marginwidth :
                Html_types.pixels wrap -> [> `Marginwidth ] attrib
              val a_scrolling :
                [< `Auto | `No | `Yes ] wrap -> [> `Scrolling ] attrib
              val a_target :
                Html_types.frametarget wrap -> [> `Target ] attrib
              val a_content : Html_types.text wrap -> [> `Content ] attrib
              val a_http_equiv :
                Html_types.text wrap -> [> `Http_equiv ] attrib
              val a_defer : unit -> [> `Defer ] attrib
              val a_media : Html_types.mediadesc wrap -> [> `Media ] attrib
              val a_style : string wrap -> [> `Style_Attr ] attrib
              val a_property : string wrap -> [> `Property ] attrib
              val a_role : string list wrap -> [> `Role ] attrib
              val a_aria : string -> string list wrap -> [> `Aria ] attrib
              val txt : string wrap -> [> Html_types.txt ] elt
              val html :
                ?a:Html_types.html_attrib attrib list ->
                [< Html_types.head ] elt wrap ->
                [< Html_types.body ] elt wrap -> [> Html_types.html ] elt
              val head :
                ?a:Html_types.head_attrib attrib list ->
                [< Html_types.title ] elt wrap ->
                Html_types.head_content_fun elt list_wrap ->
                [> Html_types.head ] elt
              val base :
                ([< Html_types.base_attrib ], [> Html_types.base ]) nullary
              val title :
                (Html_types.title_attrib, [< Html_types.title_content_fun ],
                 [> Html_types.title ])
                unary
              val body :
                ([< Html_types.body_attrib ],
                 [< Html_types.body_content_fun ], [> Html_types.body ])
                star
              val svg :
                ?a:[< Html_types.svg_attrib ] Svg.R.Raw.attrib list ->
                [< Html_types.svg_content ] Svg.R.Raw.elt list_wrap ->
                [> Html_types.svg ] elt
              val footer :
                ([< Html_types.footer_attrib ],
                 [< Html_types.footer_content_fun ], [> Html_types.footer ])
                star
              val header :
                ([< Html_types.header_attrib ],
                 [< Html_types.header_content_fun ], [> Html_types.header ])
                star
              val section :
                ([< Html_types.section_attrib ],
                 [< Html_types.section_content_fun ],
                 [> Html_types.section ])
                star
              val nav :
                ([< Html_types.nav_attrib ], [< Html_types.nav_content_fun ],
                 [> Html_types.nav ])
                star
              val h1 :
                ([< Html_types.h1_attrib ], [< Html_types.h1_content_fun ],
                 [> Html_types.h1 ])
                star
              val h2 :
                ([< Html_types.h2_attrib ], [< Html_types.h2_content_fun ],
                 [> Html_types.h2 ])
                star
              val h3 :
                ([< Html_types.h3_attrib ], [< Html_types.h3_content_fun ],
                 [> Html_types.h3 ])
                star
              val h4 :
                ([< Html_types.h4_attrib ], [< Html_types.h4_content_fun ],
                 [> Html_types.h4 ])
                star
              val h5 :
                ([< Html_types.h5_attrib ], [< Html_types.h5_content_fun ],
                 [> Html_types.h5 ])
                star
              val h6 :
                ([< Html_types.h6_attrib ], [< Html_types.h6_content_fun ],
                 [> Html_types.h6 ])
                star
              val hgroup :
                ([< Html_types.hgroup_attrib ],
                 [< Html_types.hgroup_content_fun ], [> Html_types.hgroup ])
                star
              val address :
                ([< Html_types.address_attrib ],
                 [< Html_types.address_content_fun ],
                 [> Html_types.address ])
                star
              val article :
                ([< Html_types.article_attrib ],
                 [< Html_types.article_content_fun ],
                 [> Html_types.article ])
                star
              val aside :
                ([< Html_types.aside_attrib ],
                 [< Html_types.aside_content_fun ], [> Html_types.aside ])
                star
              val main :
                ([< Html_types.main_attrib ],
                 [< Html_types.main_content_fun ], [> Html_types.main ])
                star
              val p :
                ([< Html_types.p_attrib ], [< Html_types.p_content_fun ],
                 [> Html_types.p ])
                star
              val pre :
                ([< Html_types.pre_attrib ], [< Html_types.pre_content_fun ],
                 [> Html_types.pre ])
                star
              val blockquote :
                ([< Html_types.blockquote_attrib ],
                 [< Html_types.blockquote_content_fun ],
                 [> Html_types.blockquote ])
                star
              val div :
                ([< Html_types.div_attrib ], [< Html_types.div_content_fun ],
                 [> Html_types.div ])
                star
              val dl :
                ([< Html_types.dl_attrib ], [< Html_types.dl_content_fun ],
                 [> Html_types.dl ])
                star
              val ol :
                ([< Html_types.ol_attrib ], [< Html_types.ol_content_fun ],
                 [> Html_types.ol ])
                star
              val ul :
                ([< Html_types.ul_attrib ], [< Html_types.ul_content_fun ],
                 [> Html_types.ul ])
                star
              val dd :
                ([< Html_types.dd_attrib ], [< Html_types.dd_content_fun ],
                 [> Html_types.dd ])
                star
              val dt :
                ([< Html_types.dt_attrib ], [< Html_types.dt_content_fun ],
                 [> Html_types.dt ])
                star
              val li :
                ([< Html_types.li_attrib ], [< Html_types.li_content_fun ],
                 [> Html_types.li ])
                star
              val figcaption :
                ([< Html_types.figcaption_attrib ],
                 [< Html_types.figcaption_content_fun ],
                 [> Html_types.figcaption ])
                star
              val figure :
                ?figcaption:[ `Bottom of [< Html_types.figcaption ] elt wrap
                            | `Top of [< Html_types.figcaption ] elt wrap ] ->
                ([< Html_types.figure_attrib ],
                 [< Html_types.figure_content_fun ], [> Html_types.figure ])
                star
              val hr :
                ([< Html_types.hr_attrib ], [> Html_types.hr ]) nullary
              val b :
                ([< Html_types.b_attrib ], [< Html_types.b_content_fun ],
                 [> Html_types.b ])
                star
              val i :
                ([< Html_types.i_attrib ], [< Html_types.i_content_fun ],
                 [> Html_types.i ])
                star
              val u :
                ([< Html_types.u_attrib ], [< Html_types.u_content_fun ],
                 [> Html_types.u ])
                star
              val small :
                ([< Html_types.small_attrib ],
                 [< Html_types.small_content_fun ], [> Html_types.small ])
                star
              val sub :
                ([< Html_types.sub_attrib ], [< Html_types.sub_content_fun ],
                 [> Html_types.sub ])
                star
              val sup :
                ([< Html_types.sup_attrib ], [< Html_types.sup_content_fun ],
                 [> Html_types.sup ])
                star
              val mark :
                ([< Html_types.mark_attrib ],
                 [< Html_types.mark_content_fun ], [> Html_types.mark ])
                star
              val wbr :
                ([< Html_types.wbr_attrib ], [> Html_types.wbr ]) nullary
              val bdo :
                dir:[< `Ltr | `Rtl ] wrap ->
                ([< Html_types.bdo_attrib ], [< Html_types.bdo_content_fun ],
                 [> Html_types.bdo ])
                star
              val abbr :
                ([< Html_types.abbr_attrib ],
                 [< Html_types.abbr_content_fun ], [> Html_types.abbr ])
                star
              val br :
                ([< Html_types.br_attrib ], [> Html_types.br ]) nullary
              val cite :
                ([< Html_types.cite_attrib ],
                 [< Html_types.cite_content_fun ], [> Html_types.cite ])
                star
              val code :
                ([< Html_types.code_attrib ],
                 [< Html_types.code_content_fun ], [> Html_types.code ])
                star
              val dfn :
                ([< Html_types.dfn_attrib ], [< Html_types.dfn_content_fun ],
                 [> Html_types.dfn ])
                star
              val em :
                ([< Html_types.em_attrib ], [< Html_types.em_content_fun ],
                 [> Html_types.em ])
                star
              val kbd :
                ([< Html_types.kbd_attrib ], [< Html_types.kbd_content_fun ],
                 [> Html_types.kbd ])
                star
              val q :
                ([< Html_types.q_attrib ], [< Html_types.q_content_fun ],
                 [> Html_types.q ])
                star
              val samp :
                ([< Html_types.samp_attrib ],
                 [< Html_types.samp_content_fun ], [> Html_types.samp ])
                star
              val span :
                ([< Html_types.span_attrib ],
                 [< Html_types.span_content_fun ], [> Html_types.span ])
                star
              val strong :
                ([< Html_types.strong_attrib ],
                 [< Html_types.strong_content_fun ], [> Html_types.strong ])
                star
              val time :
                ([< Html_types.time_attrib ],
                 [< Html_types.time_content_fun ], [> Html_types.time ])
                star
              val var :
                ([< Html_types.var_attrib ], [< Html_types.var_content_fun ],
                 [> Html_types.var ])
                star
              val a :
                ([< Html_types.a_attrib ], 'a, [> 'Html_types.a ]) star
              val del :
                ([< Html_types.del_attrib ], 'a, [> 'Html_types.del ]) star
              val ins :
                ([< Html_types.ins_attrib ], 'a, [> 'Html_types.ins ]) star
              val img :
                src:Xml.uri wrap ->
                alt:Html_types.text wrap ->
                ([< Html_types.img_attrib ], [> Html_types.img ]) nullary
              val picture :
                img:[< Html_types.img ] elt wrap ->
                ([< Html_types.picture_attrib ],
                 [< Html_types.picture_content_fun ],
                 [> Html_types.picture ])
                star
              val iframe :
                ([< Html_types.iframe_attrib ],
                 [< Html_types.iframe_content_fun ], [> Html_types.iframe ])
                star
              val object_ :
                ?params:[< Html_types.param ] elt list_wrap ->
                ([< Html_types.object__attrib ], 'a, [> `Object of 'a ]) star
              val param :
                ([< Html_types.param_attrib ], [> Html_types.param ]) nullary
              val embed :
                ([< Html_types.embed_attrib ], [> Html_types.embed ]) nullary
              val audio :
                ?src:Xml.uri wrap ->
                ?srcs:[< Html_types.source ] elt list_wrap ->
                ([< Html_types.audio_attrib ], 'a, [> 'Html_types.audio ])
                star
              val video :
                ?src:Xml.uri wrap ->
                ?srcs:[< Html_types.source ] elt list_wrap ->
                ([< Html_types.video_attrib ], 'a, [> 'Html_types.video ])
                star
              val canvas :
                ([< Html_types.canvas_attrib ], 'a,
                 [> 'Html_types.canvas ])
                star
              val source :
                ([< Html_types.source_attrib ], [> Html_types.source ])
                nullary
              val area :
                alt:Html_types.text wrap ->
                ([< `Accesskey
                  | `Alt
                  | `Aria
                  | `Class
                  | `Contenteditable
                  | `Contextmenu
                  | `Coords
                  | `Dir
                  | `Draggable
                  | `Hidden
                  | `Hreflang
                  | `Id
                  | `Lang
                  | `Media
                  | `Mime_type
                  | `OnAbort
                  | `OnBlur
                  | `OnCanPlay
                  | `OnCanPlayThrough
                  | `OnChange
                  | `OnClick
                  | `OnContextMenu
                  | `OnDblClick
                  | `OnDrag
                  | `OnDragEnd
                  | `OnDragEnter
                  | `OnDragLeave
                  | `OnDragOver
                  | `OnDragStart
                  | `OnDrop
                  | `OnDurationChange
                  | `OnEmptied
                  | `OnEnded
                  | `OnError
                  | `OnFocus
                  | `OnFormChange
                  | `OnFormInput
                  | `OnInput
                  | `OnInvalid
                  | `OnKeyDown
                  | `OnKeyPress
                  | `OnKeyUp
                  | `OnLoad
                  | `OnLoadStart
                  | `OnLoadedData
                  | `OnLoadedMetaData
                  | `OnMouseDown
                  | `OnMouseMove
                  | `OnMouseOut
                  | `OnMouseOver
                  | `OnMouseUp
                  | `OnMouseWheel
                  | `OnPause
                  | `OnPlay
                  | `OnPlaying
                  | `OnProgress
                  | `OnRateChange
                  | `OnReadyStateChange
                  | `OnScroll
                  | `OnSeeked
                  | `OnSeeking
                  | `OnSelect
                  | `OnShow
                  | `OnStalled
                  | `OnSubmit
                  | `OnSuspend
                  | `OnTimeUpdate
                  | `OnTouchCancel
                  | `OnTouchEnd
                  | `OnTouchMove
                  | `OnTouchStart
                  | `OnVolumeChange
                  | `OnWaiting
                  | `Rel
                  | `Role
                  | `Shape
                  | `Spellcheck
                  | `Style_Attr
                  | `Tabindex
                  | `Target
                  | `Title
                  | `Translate
                  | `User_data
                  | `XML_lang
                  | `XMLns ],
                 [> Html_types.area ])
                nullary
              val map :
                ([< Html_types.map_attrib ], 'a, [> 'Html_types.map ]) star
              val caption :
                ([< Html_types.caption_attrib ],
                 [< Html_types.caption_content_fun ],
                 [> Html_types.caption ])
                star
              val table :
                ?caption:[< Html_types.caption ] elt wrap ->
                ?columns:[< Html_types.colgroup ] elt list_wrap ->
                ?thead:[< Html_types.thead ] elt wrap ->
                ?tfoot:[< Html_types.tfoot ] elt wrap ->
                ([< Html_types.table_attrib ],
                 [< Html_types.table_content_fun ], [> Html_types.table ])
                star
              val tablex :
                ?caption:[< Html_types.caption ] elt wrap ->
                ?columns:[< Html_types.colgroup ] elt list_wrap ->
                ?thead:[< Html_types.thead ] elt wrap ->
                ?tfoot:[< Html_types.tfoot ] elt wrap ->
                ([< Html_types.tablex_attrib ],
                 [< Html_types.tablex_content_fun ], [> Html_types.tablex ])
                star
              val colgroup :
                ([< Html_types.colgroup_attrib ],
                 [< Html_types.colgroup_content_fun ],
                 [> Html_types.colgroup ])
                star
              val col :
                ([< Html_types.col_attrib ], [> Html_types.col ]) nullary
              val thead :
                ([< Html_types.thead_attrib ],
                 [< Html_types.thead_content_fun ], [> Html_types.thead ])
                star
              val tbody :
                ([< Html_types.tbody_attrib ],
                 [< Html_types.tbody_content_fun ], [> Html_types.tbody ])
                star
              val tfoot :
                ([< Html_types.tfoot_attrib ],
                 [< Html_types.tfoot_content_fun ], [> Html_types.tfoot ])
                star
              val td :
                ([< Html_types.td_attrib ], [< Html_types.td_content_fun ],
                 [> Html_types.td ])
                star
              val th :
                ([< Html_types.th_attrib ], [< Html_types.th_content_fun ],
                 [> Html_types.th ])
                star
              val tr :
                ([< Html_types.tr_attrib ], [< Html_types.tr_content_fun ],
                 [> Html_types.tr ])
                star
              val form :
                ([< Html_types.form_attrib ],
                 [< Html_types.form_content_fun ], [> Html_types.form ])
                star
              val fieldset :
                ?legend:[< Html_types.legend ] elt wrap ->
                ([< Html_types.fieldset_attrib ],
                 [< Html_types.fieldset_content_fun ],
                 [> Html_types.fieldset ])
                star
              val legend :
                ([< Html_types.legend_attrib ],
                 [< Html_types.legend_content_fun ], [> Html_types.legend ])
                star
              val label :
                ([< Html_types.label_attrib ],
                 [< Html_types.label_content_fun ], [> Html_types.label ])
                star
              val input :
                ([< Html_types.input_attrib ], [> Html_types.input ]) nullary
              val button :
                ([< Html_types.button_attrib ],
                 [< Html_types.button_content_fun ], [> Html_types.button ])
                star
              val select :
                ([< Html_types.select_attrib ],
                 [< Html_types.select_content_fun ], [> Html_types.select ])
                star
              val datalist :
                ?children:[< `Options of
                               [< Html_types.selectoption ] elt list_wrap
                           | `Phras of [< Html_types.phrasing ] elt list_wrap
                          ] ->
                ([< Html_types.datalist_attrib ], [> Html_types.datalist ])
                nullary
              val optgroup :
                label:Html_types.text wrap ->
                ([< Html_types.optgroup_attrib ],
                 [< Html_types.optgroup_content_fun ],
                 [> Html_types.optgroup ])
                star
              val option :
                ([< Html_types.option_attrib ],
                 [< Html_types.option_content_fun ],
                 [> Html_types.selectoption ])
                unary
              val textarea :
                ([< Html_types.textarea_attrib ],
                 [< Html_types.textarea_content_fun ],
                 [> Html_types.textarea ])
                unary
              val keygen :
                ([< Html_types.keygen_attrib ], [> Html_types.keygen ])
                nullary
              val progress :
                ([< Html_types.progress_attrib ],
                 [< Html_types.progress_content_fun ],
                 [> Html_types.progress ])
                star
              val meter :
                ([< Html_types.meter_attrib ],
                 [< Html_types.meter_content_fun ], [> Html_types.meter ])
                star
              val output_elt :
                ([< Html_types.output_elt_attrib ],
                 [< Html_types.output_elt_content_fun ],
                 [> Html_types.output_elt ])
                star
              val entity : string -> [> Html_types.txt ] elt
              val space : unit -> [> Html_types.txt ] elt
              val cdata : string -> [> Html_types.txt ] elt
              val cdata_script : string -> [> Html_types.txt ] elt
              val cdata_style : string -> [> Html_types.txt ] elt
              val details :
                [< Html_types.summary ] elt wrap ->
                ([< Html_types.details_attrib ],
                 [< Html_types.details_content_fun ],
                 [> Html_types.details ])
                star
              val summary :
                ([< Html_types.summary_attrib ],
                 [< Html_types.summary_content_fun ],
                 [> Html_types.summary ])
                star
              val command :
                label:Html_types.text wrap ->
                ([< Html_types.command_attrib ], [> Html_types.command ])
                nullary
              val menu :
                ?children:[< `Flows of [< Html_types.flow5 ] elt list_wrap
                           | `Lis of
                               [< `Li of [< Html_types.common ] ] elt
                               list_wrap ] ->
                ([< Html_types.menu_attrib ], [> Html_types.menu ]) nullary
              val script :
                ([< Html_types.script_attrib ],
                 [< Html_types.script_content_fun ], [> Html_types.script ])
                unary
              val noscript :
                ([< Html_types.noscript_attrib ],
                 [< Html_types.noscript_content_fun ],
                 [> Html_types.noscript ])
                star
              val template :
                ([< Html_types.template_attrib ],
                 [< Html_types.template_content_fun ],
                 [> Html_types.template ])
                star
              val meta :
                ([< Html_types.meta_attrib ], [> Html_types.meta ]) nullary
              val style :
                ([< Html_types.style_attrib ],
                 [< Html_types.style_content_fun ], [> Html_types.style ])
                star
              val link :
                rel:Html_types.linktypes wrap ->
                href:Xml.uri wrap ->
                ([< Html_types.link_attrib ], [> Html_types.link ]) nullary
              val rt :
                ([< Html_types.rt_attrib ], [< Html_types.rt_content_fun ],
                 [> Html_types.rt ])
                star
              val rp :
                ([< Html_types.rp_attrib ], [< Html_types.rp_content_fun ],
                 [> Html_types.rp ])
                star
              val ruby :
                ([< Html_types.ruby_attrib ],
                 [< Html_types.ruby_content_fun ], [> Html_types.ruby ])
                star
              val pcdata : string wrap -> [> Html_types.pcdata ] elt
              val of_seq : Xml_stream.signal Seq.t -> 'a elt list_wrap
              val tot : Xml.elt -> 'a elt
              val totl : Xml.elt list_wrap -> 'a elt list_wrap
              val toelt : 'a elt -> Xml.elt
              val toeltl : 'a elt list_wrap -> Xml.elt list_wrap
              val doc_toelt : doc -> Xml.elt
              val to_xmlattribs : 'a attrib list -> Xml.attrib list
              val to_attrib : Xml.attrib -> 'a attrib
              module Unsafe :
                sig
                  val data : string wrap -> 'a elt
                  val node :
                    string -> ?a:'a attrib list -> 'b elt list_wrap -> 'c elt
                  val leaf : string -> ?a:'a attrib list -> unit -> 'b elt
                  val coerce_elt : 'a elt -> 'b elt
                  val string_attrib : string -> string wrap -> 'a attrib
                  val float_attrib : string -> float wrap -> 'a attrib
                  val int_attrib : string -> int wrap -> 'a attrib
                  val uri_attrib : string -> uri wrap -> 'a attrib
                  val space_sep_attrib :
                    string -> string list wrap -> 'a attrib
                  val comma_sep_attrib :
                    string -> string list wrap -> 'a attrib
                end
            end
          type 'a elt = 'a elt
          type doc = Html_types.html elt
          type 'a attrib = 'a attrib
          module Xml :
            sig
              module W :
                sig
                  type 'a t = 'Eliom_content_core.Xml_wed.W.t
                  val return : '-> 'a t
                  type ('a, 'b) ft = ('a, 'b) Eliom_content_core.Xml_wed.W.ft
                  val fmap : ('a, 'b) ft -> 'a t -> 'b t
                  type 'a tlist = 'Eliom_content_core.Xml_wed.W.tlist
                  val nil : unit -> 'a tlist
                  val singleton : 'a t -> 'a tlist
                  val cons : 'a t -> 'a tlist -> 'a tlist
                  val append : 'a tlist -> 'a tlist -> 'a tlist
                  val map : ('a, 'b) ft -> 'a tlist -> 'b tlist
                end
              type 'a wrap = 'W.t
              type 'a list_wrap = 'W.tlist
              type uri = Eliom_content_core.Xml_wed.uri
              val string_of_uri : (uri, string) W.ft
              val uri_of_string : (string, uri) W.ft
              type aname = string
              type event_handler = Eliom_content_core.Xml_wed.event_handler
              type mouse_event_handler =
                  Eliom_content_core.Xml_wed.mouse_event_handler
              type keyboard_event_handler =
                  Eliom_content_core.Xml_wed.keyboard_event_handler
              type touch_event_handler =
                  Eliom_content_core.Xml_wed.touch_event_handler
              type attrib = Eliom_content_core.Xml_wed.attrib
              val float_attrib : aname -> float wrap -> attrib
              val int_attrib : aname -> int wrap -> attrib
              val string_attrib : aname -> string wrap -> attrib
              val space_sep_attrib : aname -> string list wrap -> attrib
              val comma_sep_attrib : aname -> string list wrap -> attrib
              val event_handler_attrib : aname -> event_handler -> attrib
              val mouse_event_handler_attrib :
                aname -> mouse_event_handler -> attrib
              val keyboard_event_handler_attrib :
                aname -> keyboard_event_handler -> attrib
              val touch_event_handler_attrib :
                aname -> touch_event_handler -> attrib
              val uri_attrib : aname -> uri wrap -> attrib
              val uris_attrib : aname -> uri list wrap -> attrib
              type elt = Eliom_content_core.Xml_wed.elt
              type ename = string
              val empty : unit -> elt
              val comment : string -> elt
              val pcdata : string wrap -> elt
              val encodedpcdata : string wrap -> elt
              val entity : string -> elt
              val leaf : ?a:attrib list -> ename -> elt
              val node : ?a:attrib list -> ename -> elt list_wrap -> elt
              val cdata : string -> elt
              val cdata_script : string -> elt
              val cdata_style : string -> elt
            end
          type 'a wrap = 'Xml.W.t
          type 'a list_wrap = 'Xml.W.tlist
          type ('a, 'b) nullary = ?a:'a attrib list -> unit -> 'b elt
          type ('a, 'b, 'c) unary =
              ?a:'a attrib list -> 'b elt wrap -> 'c elt
          type ('a, 'b, 'c) star =
              ?a:'a attrib list -> 'b elt list_wrap -> 'c elt
          module Info : Xml_sigs.Info
          type uri = Xml.uri
          val string_of_uri : (uri, string) Xml.W.ft
          val uri_of_string : (string, uri) Xml.W.ft
          val a_class : Html_types.nmtokens wrap -> [> `Class ] attrib
          val a_user_data :
            Html_types.nmtoken ->
            Html_types.text wrap -> [> `User_data ] attrib
          val a_id : Html_types.text wrap -> [> `Id ] attrib
          val a_title : Html_types.text wrap -> [> `Title ] attrib
          val a_xml_lang :
            Html_types.languagecode wrap -> [> `XML_lang ] attrib
          val a_lang : Html_types.languagecode wrap -> [> `Lang ] attrib
          val a_onabort : Xml.event_handler -> [> `OnAbort ] attrib
          val a_onafterprint : Xml.event_handler -> [> `OnAfterPrint ] attrib
          val a_onbeforeprint :
            Xml.event_handler -> [> `OnBeforePrint ] attrib
          val a_onbeforeunload :
            Xml.event_handler -> [> `OnBeforeUnload ] attrib
          val a_onblur : Xml.event_handler -> [> `OnBlur ] attrib
          val a_oncanplay : Xml.event_handler -> [> `OnCanPlay ] attrib
          val a_oncanplaythrough :
            Xml.event_handler -> [> `OnCanPlayThrough ] attrib
          val a_onchange : Xml.event_handler -> [> `OnChange ] attrib
          val a_ondurationchange :
            Xml.event_handler -> [> `OnDurationChange ] attrib
          val a_onemptied : Xml.event_handler -> [> `OnEmptied ] attrib
          val a_onended : Xml.event_handler -> [> `OnEnded ] attrib
          val a_onerror : Xml.event_handler -> [> `OnError ] attrib
          val a_onfocus : Xml.event_handler -> [> `OnFocus ] attrib
          val a_onformchange : Xml.event_handler -> [> `OnFormChange ] attrib
          val a_onforminput : Xml.event_handler -> [> `OnFormInput ] attrib
          val a_onhashchange : Xml.event_handler -> [> `OnHashChange ] attrib
          val a_oninput : Xml.event_handler -> [> `OnInput ] attrib
          val a_oninvalid : Xml.event_handler -> [> `OnInvalid ] attrib
          val a_onmousewheel : Xml.event_handler -> [> `OnMouseWheel ] attrib
          val a_onoffline : Xml.event_handler -> [> `OnOffLine ] attrib
          val a_ononline : Xml.event_handler -> [> `OnOnLine ] attrib
          val a_onpause : Xml.event_handler -> [> `OnPause ] attrib
          val a_onplay : Xml.event_handler -> [> `OnPlay ] attrib
          val a_onplaying : Xml.event_handler -> [> `OnPlaying ] attrib
          val a_onpagehide : Xml.event_handler -> [> `OnPageHide ] attrib
          val a_onpageshow : Xml.event_handler -> [> `OnPageShow ] attrib
          val a_onpopstate : Xml.event_handler -> [> `OnPopState ] attrib
          val a_onprogress : Xml.event_handler -> [> `OnProgress ] attrib
          val a_onratechange : Xml.event_handler -> [> `OnRateChange ] attrib
          val a_onreadystatechange :
            Xml.event_handler -> [> `OnReadyStateChange ] attrib
          val a_onredo : Xml.event_handler -> [> `OnRedo ] attrib
          val a_onresize : Xml.event_handler -> [> `OnResize ] attrib
          val a_onscroll : Xml.event_handler -> [> `OnScroll ] attrib
          val a_onseeked : Xml.event_handler -> [> `OnSeeked ] attrib
          val a_onseeking : Xml.event_handler -> [> `OnSeeking ] attrib
          val a_onselect : Xml.event_handler -> [> `OnSelect ] attrib
          val a_onshow : Xml.event_handler -> [> `OnShow ] attrib
          val a_onstalled : Xml.event_handler -> [> `OnStalled ] attrib
          val a_onstorage : Xml.event_handler -> [> `OnStorage ] attrib
          val a_onsubmit : Xml.event_handler -> [> `OnSubmit ] attrib
          val a_onsuspend : Xml.event_handler -> [> `OnSuspend ] attrib
          val a_ontimeupdate : Xml.event_handler -> [> `OnTimeUpdate ] attrib
          val a_onundo : Xml.event_handler -> [> `OnUndo ] attrib
          val a_onunload : Xml.event_handler -> [> `OnUnload ] attrib
          val a_onvolumechange :
            Xml.event_handler -> [> `OnVolumeChange ] attrib
          val a_onwaiting : Xml.event_handler -> [> `OnWaiting ] attrib
          val a_onload : Xml.event_handler -> [> `OnLoad ] attrib
          val a_onloadeddata : Xml.event_handler -> [> `OnLoadedData ] attrib
          val a_onloadedmetadata :
            Xml.event_handler -> [> `OnLoadedMetaData ] attrib
          val a_onloadstart : Xml.event_handler -> [> `OnLoadStart ] attrib
          val a_onmessage : Xml.event_handler -> [> `OnMessage ] attrib
          val a_onclick : Xml.mouse_event_handler -> [> `OnClick ] attrib
          val a_oncontextmenu :
            Xml.mouse_event_handler -> [> `OnContextMenu ] attrib
          val a_ondblclick :
            Xml.mouse_event_handler -> [> `OnDblClick ] attrib
          val a_ondrag : Xml.mouse_event_handler -> [> `OnDrag ] attrib
          val a_ondragend : Xml.mouse_event_handler -> [> `OnDragEnd ] attrib
          val a_ondragenter :
            Xml.mouse_event_handler -> [> `OnDragEnter ] attrib
          val a_ondragleave :
            Xml.mouse_event_handler -> [> `OnDragLeave ] attrib
          val a_ondragover :
            Xml.mouse_event_handler -> [> `OnDragOver ] attrib
          val a_ondragstart :
            Xml.mouse_event_handler -> [> `OnDragStart ] attrib
          val a_ondrop : Xml.mouse_event_handler -> [> `OnDrop ] attrib
          val a_onmousedown :
            Xml.mouse_event_handler -> [> `OnMouseDown ] attrib
          val a_onmouseup : Xml.mouse_event_handler -> [> `OnMouseUp ] attrib
          val a_onmouseover :
            Xml.mouse_event_handler -> [> `OnMouseOver ] attrib
          val a_onmousemove :
            Xml.mouse_event_handler -> [> `OnMouseMove ] attrib
          val a_onmouseout :
            Xml.mouse_event_handler -> [> `OnMouseOut ] attrib
          val a_ontouchstart :
            Xml.touch_event_handler -> [> `OnTouchStart ] attrib
          val a_ontouchend :
            Xml.touch_event_handler -> [> `OnTouchEnd ] attrib
          val a_ontouchmove :
            Xml.touch_event_handler -> [> `OnTouchMove ] attrib
          val a_ontouchcancel :
            Xml.touch_event_handler -> [> `OnTouchCancel ] attrib
          val a_onkeypress :
            Xml.keyboard_event_handler -> [> `OnKeyPress ] attrib
          val a_onkeydown :
            Xml.keyboard_event_handler -> [> `OnKeyDown ] attrib
          val a_onkeyup : Xml.keyboard_event_handler -> [> `OnKeyUp ] attrib
          val a_allowfullscreen : unit -> [> `Allowfullscreen ] attrib
          val a_allowpaymentrequest :
            unit -> [> `Allowpaymentrequest ] attrib
          val a_autocomplete : bool wrap -> [> `Autocomplete ] attrib
          val a_async : unit -> [> `Async ] attrib
          val a_autofocus : unit -> [> `Autofocus ] attrib
          val a_autoplay : unit -> [> `Autoplay ] attrib
          val a_muted : unit -> [> `Muted ] attrib
          val a_crossorigin :
            [< `Anonymous | `Use_credentials ] wrap ->
            [> `Crossorigin ] attrib
          val a_integrity : string wrap -> [> `Integrity ] attrib
          val a_mediagroup : string wrap -> [> `Mediagroup ] attrib
          val a_challenge : Html_types.text wrap -> [> `Challenge ] attrib
          val a_contenteditable : bool wrap -> [> `Contenteditable ] attrib
          val a_contextmenu :
            Html_types.idref wrap -> [> `Contextmenu ] attrib
          val a_controls : unit -> [> `Controls ] attrib
          val a_dir : [< `Ltr | `Rtl ] wrap -> [> `Dir ] attrib
          val a_draggable : bool wrap -> [> `Draggable ] attrib
          val a_form : Html_types.idref wrap -> [> `Form ] attrib
          val a_formaction : Xml.uri wrap -> [> `Formaction ] attrib
          val a_formenctype :
            Html_types.contenttype wrap -> [> `Formenctype ] attrib
          val a_formnovalidate : unit -> [> `Formnovalidate ] attrib
          val a_formtarget : Html_types.text wrap -> [> `Formtarget ] attrib
          val a_hidden : unit -> [> `Hidden ] attrib
          val a_high : Html_types.float_number wrap -> [> `High ] attrib
          val a_icon : Xml.uri wrap -> [> `Icon ] attrib
          val a_ismap : unit -> [> `Ismap ] attrib
          val a_keytype : Html_types.text wrap -> [> `Keytype ] attrib
          val a_list : Html_types.idref wrap -> [> `List ] attrib
          val a_loop : unit -> [> `Loop ] attrib
          val a_low : Html_types.float_number wrap -> [> `High ] attrib
          val a_max : Html_types.float_number wrap -> [> `Max ] attrib
          val a_input_max :
            Html_types.number_or_datetime wrap -> [> `Input_Max ] attrib
          val a_min : Html_types.float_number wrap -> [> `Min ] attrib
          val a_input_min :
            Html_types.number_or_datetime wrap -> [> `Input_Min ] attrib
          val a_inputmode :
            [< `Decimal
             | `Email
             | `None
             | `Numeric
             | `Search
             | `Tel
             | `Text
             | `Url ]
            wrap -> [> `Inputmode ] attrib
          val a_novalidate : unit -> [> `Novalidate ] attrib
          val a_open : unit -> [> `Open ] attrib
          val a_optimum :
            Html_types.float_number wrap -> [> `Optimum ] attrib
          val a_pattern : Html_types.text wrap -> [> `Pattern ] attrib
          val a_placeholder :
            Html_types.text wrap -> [> `Placeholder ] attrib
          val a_poster : Xml.uri wrap -> [> `Poster ] attrib
          val a_preload :
            [< `Audio | `Metadata | `None ] wrap -> [> `Preload ] attrib
          val a_pubdate : unit -> [> `Pubdate ] attrib
          val a_radiogroup : Html_types.text wrap -> [> `Radiogroup ] attrib
          val a_referrerpolicy :
            Html_types.referrerpolicy wrap -> [> `Referrerpolicy ] attrib
          val a_required : unit -> [> `Required ] attrib
          val a_reversed : unit -> [> `Reversed ] attrib
          val a_sandbox :
            [< Html_types.sandbox_token ] list wrap -> [> `Sandbox ] attrib
          val a_spellcheck : bool wrap -> [> `Spellcheck ] attrib
          val a_scoped : unit -> [> `Scoped ] attrib
          val a_seamless : unit -> [> `Seamless ] attrib
          val a_sizes :
            (Html_types.number * Html_types.number) list option wrap ->
            [> `Sizes ] attrib
          val a_span : Html_types.number wrap -> [> `Span ] attrib
          val a_srclang : Html_types.nmtoken wrap -> [> `XML_lang ] attrib
          type image_candidate =
              [ `Url of uri
              | `Url_pixel of uri * Html_types.float_number
              | `Url_width of uri * Html_types.number ]
          val a_srcset : image_candidate list wrap -> [> `Srcset ] attrib
          val a_img_sizes :
            Html_types.text list wrap -> [> `Img_sizes ] attrib
          val a_start : Html_types.number wrap -> [> `Start ] attrib
          val a_step :
            Html_types.float_number option wrap -> [> `Step ] attrib
          val a_translate : [< `No | `Yes ] wrap -> [> `Translate ] attrib
          val a_wrap : [< `Hard | `Soft ] wrap -> [> `Wrap ] attrib
          val a_version : Html_types.cdata wrap -> [> `Version ] attrib
          val a_xmlns : [< `W3_org_1999_xhtml ] wrap -> [> `XMLns ] attrib
          val a_manifest : Xml.uri wrap -> [> `Manifest ] attrib
          val a_cite : Xml.uri wrap -> [> `Cite ] attrib
          val a_xml_space :
            [< `Default | `Preserve ] wrap -> [> `XML_space ] attrib
          val a_accesskey :
            Html_types.character wrap -> [> `Accesskey ] attrib
          val a_charset : Html_types.charset wrap -> [> `Charset ] attrib
          val a_accept_charset :
            Html_types.charsets wrap -> [> `Accept_charset ] attrib
          val a_accept : Html_types.contenttypes wrap -> [> `Accept ] attrib
          val a_href : Xml.uri wrap -> [> `Href ] attrib
          val a_hreflang :
            Html_types.languagecode wrap -> [> `Hreflang ] attrib
          val a_download : string option wrap -> [> `Download ] attrib
          val a_rel : Html_types.linktypes wrap -> [> `Rel ] attrib
          val a_tabindex : Html_types.number wrap -> [> `Tabindex ] attrib
          val a_mime_type :
            Html_types.contenttype wrap -> [> `Mime_type ] attrib
          val a_datetime : Html_types.cdata wrap -> [> `Datetime ] attrib
          val a_action : Xml.uri wrap -> [> `Action ] attrib
          val a_checked : unit -> [> `Checked ] attrib
          val a_cols : Html_types.number wrap -> [> `Cols ] attrib
          val a_enctype : Html_types.contenttype wrap -> [> `Enctype ] attrib
          val a_label_for : Html_types.idref wrap -> [> `Label_for ] attrib
          val a_for : Html_types.idref wrap -> [> `Label_for ] attrib
          val a_output_for :
            Html_types.idrefs wrap -> [> `Output_for ] attrib
          val a_for_list : Html_types.idrefs wrap -> [> `Output_for ] attrib
          val a_maxlength : Html_types.number wrap -> [> `Maxlength ] attrib
          val a_minlength : Html_types.number wrap -> [> `Minlength ] attrib
          val a_method : [< `Get | `Post ] wrap -> [> `Method ] attrib
          val a_formmethod : [< `Get | `Post ] wrap -> [> `Method ] attrib
          val a_multiple : unit -> [> `Multiple ] attrib
          val a_name : Html_types.text wrap -> [> `Name ] attrib
          val a_rows : Html_types.number wrap -> [> `Rows ] attrib
          val a_selected : unit -> [> `Selected ] attrib
          val a_size : Html_types.number wrap -> [> `Size ] attrib
          val a_src : Xml.uri wrap -> [> `Src ] attrib
          val a_input_type :
            [< `Button
             | `Checkbox
             | `Color
             | `Date
             | `Datetime
             | `Datetime_local
             | `Email
             | `File
             | `Hidden
             | `Image
             | `Month
             | `Number
             | `Password
             | `Radio
             | `Range
             | `Reset
             | `Search
             | `Submit
             | `Tel
             | `Text
             | `Time
             | `Url
             | `Week ]
            wrap -> [> `Input_Type ] attrib
          val a_text_value : Html_types.text wrap -> [> `Text_Value ] attrib
          val a_int_value : Html_types.number wrap -> [> `Int_Value ] attrib
          val a_value : Html_types.cdata wrap -> [> `Value ] attrib
          val a_float_value :
            Html_types.float_number wrap -> [> `Float_Value ] attrib
          val a_disabled : unit -> [> `Disabled ] attrib
          val a_readonly : unit -> [> `ReadOnly ] attrib
          val a_button_type :
            [< `Button | `Reset | `Submit ] wrap -> [> `Button_Type ] attrib
          val a_command_type :
            [< `Checkbox | `Command | `Radio ] wrap ->
            [> `Command_Type ] attrib
          val a_menu_type :
            [< `Context | `Toolbar ] wrap -> [> `Menu_Type ] attrib
          val a_label : Html_types.text wrap -> [> `Label ] attrib
          val a_align :
            [< `Char | `Justify | `Left | `Right ] wrap -> [> `Align ] attrib
          val a_axis : Html_types.cdata wrap -> [> `Axis ] attrib
          val a_colspan : Html_types.number wrap -> [> `Colspan ] attrib
          val a_headers : Html_types.idrefs wrap -> [> `Headers ] attrib
          val a_rowspan : Html_types.number wrap -> [> `Rowspan ] attrib
          val a_scope :
            [< `Col | `Colgroup | `Row | `Rowgroup ] wrap ->
            [> `Scope ] attrib
          val a_summary : Html_types.text wrap -> [> `Summary ] attrib
          val a_border : Html_types.pixels wrap -> [> `Border ] attrib
          val a_rules :
            [< `All | `Cols | `Groups | `None | `Rows ] wrap ->
            [> `Rules ] attrib
          val a_char : Html_types.character wrap -> [> `Char ] attrib
          val a_alt : Html_types.text wrap -> [> `Alt ] attrib
          val a_height : Html_types.number wrap -> [> `Height ] attrib
          val a_width : Html_types.number wrap -> [> `Width ] attrib
          type shape = [ `Circle | `Default | `Poly | `Rect ]
          val a_shape : shape wrap -> [> `Shape ] attrib
          val a_coords : Html_types.numbers wrap -> [> `Coords ] attrib
          val a_usemap : Html_types.idref wrap -> [> `Usemap ] attrib
          val a_data : Xml.uri wrap -> [> `Data ] attrib
          val a_codetype :
            Html_types.contenttype wrap -> [> `Codetype ] attrib
          val a_frameborder :
            [< `One | `Zero ] wrap -> [> `Frameborder ] attrib
          val a_marginheight :
            Html_types.pixels wrap -> [> `Marginheight ] attrib
          val a_marginwidth :
            Html_types.pixels wrap -> [> `Marginwidth ] attrib
          val a_scrolling :
            [< `Auto | `No | `Yes ] wrap -> [> `Scrolling ] attrib
          val a_target : Html_types.frametarget wrap -> [> `Target ] attrib
          val a_content : Html_types.text wrap -> [> `Content ] attrib
          val a_http_equiv : Html_types.text wrap -> [> `Http_equiv ] attrib
          val a_defer : unit -> [> `Defer ] attrib
          val a_media : Html_types.mediadesc wrap -> [> `Media ] attrib
          val a_style : string wrap -> [> `Style_Attr ] attrib
          val a_property : string wrap -> [> `Property ] attrib
          val a_role : string list wrap -> [> `Role ] attrib
          val a_aria : string -> string list wrap -> [> `Aria ] attrib
          val txt : string wrap -> [> Html_types.txt ] elt
          val html :
            ?a:Html_types.html_attrib attrib list ->
            [< Html_types.head ] elt wrap ->
            [< Html_types.body ] elt wrap -> [> Html_types.html ] elt
          val head :
            ?a:Html_types.head_attrib attrib list ->
            [< Html_types.title ] elt wrap ->
            Html_types.head_content_fun elt list_wrap ->
            [> Html_types.head ] elt
          val base :
            ([< Html_types.base_attrib ], [> Html_types.base ]) nullary
          val title :
            (Html_types.title_attrib, [< Html_types.title_content_fun ],
             [> Html_types.title ])
            unary
          val body :
            ([< Html_types.body_attrib ], [< Html_types.body_content_fun ],
             [> Html_types.body ])
            star
          val svg :
            ?a:[< Html_types.svg_attrib ] Svg.R.Raw.attrib list ->
            [< Html_types.svg_content ] Svg.R.Raw.elt list_wrap ->
            [> Html_types.svg ] elt
          val footer :
            ([< Html_types.footer_attrib ],
             [< Html_types.footer_content_fun ], [> Html_types.footer ])
            star
          val header :
            ([< Html_types.header_attrib ],
             [< Html_types.header_content_fun ], [> Html_types.header ])
            star
          val section :
            ([< Html_types.section_attrib ],
             [< Html_types.section_content_fun ], [> Html_types.section ])
            star
          val nav :
            ([< Html_types.nav_attrib ], [< Html_types.nav_content_fun ],
             [> Html_types.nav ])
            star
          val h1 :
            ([< Html_types.h1_attrib ], [< Html_types.h1_content_fun ],
             [> Html_types.h1 ])
            star
          val h2 :
            ([< Html_types.h2_attrib ], [< Html_types.h2_content_fun ],
             [> Html_types.h2 ])
            star
          val h3 :
            ([< Html_types.h3_attrib ], [< Html_types.h3_content_fun ],
             [> Html_types.h3 ])
            star
          val h4 :
            ([< Html_types.h4_attrib ], [< Html_types.h4_content_fun ],
             [> Html_types.h4 ])
            star
          val h5 :
            ([< Html_types.h5_attrib ], [< Html_types.h5_content_fun ],
             [> Html_types.h5 ])
            star
          val h6 :
            ([< Html_types.h6_attrib ], [< Html_types.h6_content_fun ],
             [> Html_types.h6 ])
            star
          val hgroup :
            ([< Html_types.hgroup_attrib ],
             [< Html_types.hgroup_content_fun ], [> Html_types.hgroup ])
            star
          val address :
            ([< Html_types.address_attrib ],
             [< Html_types.address_content_fun ], [> Html_types.address ])
            star
          val article :
            ([< Html_types.article_attrib ],
             [< Html_types.article_content_fun ], [> Html_types.article ])
            star
          val aside :
            ([< Html_types.aside_attrib ], [< Html_types.aside_content_fun ],
             [> Html_types.aside ])
            star
          val main :
            ([< Html_types.main_attrib ], [< Html_types.main_content_fun ],
             [> Html_types.main ])
            star
          val p :
            ([< Html_types.p_attrib ], [< Html_types.p_content_fun ],
             [> Html_types.p ])
            star
          val pre :
            ([< Html_types.pre_attrib ], [< Html_types.pre_content_fun ],
             [> Html_types.pre ])
            star
          val blockquote :
            ([< Html_types.blockquote_attrib ],
             [< Html_types.blockquote_content_fun ],
             [> Html_types.blockquote ])
            star
          val div :
            ([< Html_types.div_attrib ], [< Html_types.div_content_fun ],
             [> Html_types.div ])
            star
          val dl :
            ([< Html_types.dl_attrib ], [< Html_types.dl_content_fun ],
             [> Html_types.dl ])
            star
          val ol :
            ([< Html_types.ol_attrib ], [< Html_types.ol_content_fun ],
             [> Html_types.ol ])
            star
          val ul :
            ([< Html_types.ul_attrib ], [< Html_types.ul_content_fun ],
             [> Html_types.ul ])
            star
          val dd :
            ([< Html_types.dd_attrib ], [< Html_types.dd_content_fun ],
             [> Html_types.dd ])
            star
          val dt :
            ([< Html_types.dt_attrib ], [< Html_types.dt_content_fun ],
             [> Html_types.dt ])
            star
          val li :
            ([< Html_types.li_attrib ], [< Html_types.li_content_fun ],
             [> Html_types.li ])
            star
          val figcaption :
            ([< Html_types.figcaption_attrib ],
             [< Html_types.figcaption_content_fun ],
             [> Html_types.figcaption ])
            star
          val figure :
            ?figcaption:[ `Bottom of [< Html_types.figcaption ] elt wrap
                        | `Top of [< Html_types.figcaption ] elt wrap ] ->
            ([< Html_types.figure_attrib ],
             [< Html_types.figure_content_fun ], [> Html_types.figure ])
            star
          val hr : ([< Html_types.hr_attrib ], [> Html_types.hr ]) nullary
          val b :
            ([< Html_types.b_attrib ], [< Html_types.b_content_fun ],
             [> Html_types.b ])
            star
          val i :
            ([< Html_types.i_attrib ], [< Html_types.i_content_fun ],
             [> Html_types.i ])
            star
          val u :
            ([< Html_types.u_attrib ], [< Html_types.u_content_fun ],
             [> Html_types.u ])
            star
          val small :
            ([< Html_types.small_attrib ], [< Html_types.small_content_fun ],
             [> Html_types.small ])
            star
          val sub :
            ([< Html_types.sub_attrib ], [< Html_types.sub_content_fun ],
             [> Html_types.sub ])
            star
          val sup :
            ([< Html_types.sup_attrib ], [< Html_types.sup_content_fun ],
             [> Html_types.sup ])
            star
          val mark :
            ([< Html_types.mark_attrib ], [< Html_types.mark_content_fun ],
             [> Html_types.mark ])
            star
          val wbr : ([< Html_types.wbr_attrib ], [> Html_types.wbr ]) nullary
          val bdo :
            dir:[< `Ltr | `Rtl ] wrap ->
            ([< Html_types.bdo_attrib ], [< Html_types.bdo_content_fun ],
             [> Html_types.bdo ])
            star
          val abbr :
            ([< Html_types.abbr_attrib ], [< Html_types.abbr_content_fun ],
             [> Html_types.abbr ])
            star
          val br : ([< Html_types.br_attrib ], [> Html_types.br ]) nullary
          val cite :
            ([< Html_types.cite_attrib ], [< Html_types.cite_content_fun ],
             [> Html_types.cite ])
            star
          val code :
            ([< Html_types.code_attrib ], [< Html_types.code_content_fun ],
             [> Html_types.code ])
            star
          val dfn :
            ([< Html_types.dfn_attrib ], [< Html_types.dfn_content_fun ],
             [> Html_types.dfn ])
            star
          val em :
            ([< Html_types.em_attrib ], [< Html_types.em_content_fun ],
             [> Html_types.em ])
            star
          val kbd :
            ([< Html_types.kbd_attrib ], [< Html_types.kbd_content_fun ],
             [> Html_types.kbd ])
            star
          val q :
            ([< Html_types.q_attrib ], [< Html_types.q_content_fun ],
             [> Html_types.q ])
            star
          val samp :
            ([< Html_types.samp_attrib ], [< Html_types.samp_content_fun ],
             [> Html_types.samp ])
            star
          val span :
            ([< Html_types.span_attrib ], [< Html_types.span_content_fun ],
             [> Html_types.span ])
            star
          val strong :
            ([< Html_types.strong_attrib ],
             [< Html_types.strong_content_fun ], [> Html_types.strong ])
            star
          val time :
            ([< Html_types.time_attrib ], [< Html_types.time_content_fun ],
             [> Html_types.time ])
            star
          val var :
            ([< Html_types.var_attrib ], [< Html_types.var_content_fun ],
             [> Html_types.var ])
            star
          val a : ([< Html_types.a_attrib ], 'a, [> 'Html_types.a ]) star
          val del :
            ([< Html_types.del_attrib ], 'a, [> 'Html_types.del ]) star
          val ins :
            ([< Html_types.ins_attrib ], 'a, [> 'Html_types.ins ]) star
          val img :
            src:Xml.uri wrap ->
            alt:Html_types.text wrap ->
            ([< Html_types.img_attrib ], [> Html_types.img ]) nullary
          val picture :
            img:[< Html_types.img ] elt wrap ->
            ([< Html_types.picture_attrib ],
             [< Html_types.picture_content_fun ], [> Html_types.picture ])
            star
          val iframe :
            ([< Html_types.iframe_attrib ],
             [< Html_types.iframe_content_fun ], [> Html_types.iframe ])
            star
          val object_ :
            ?params:[< Html_types.param ] elt list_wrap ->
            ([< Html_types.object__attrib ], 'a, [> `Object of 'a ]) star
          val param :
            ([< Html_types.param_attrib ], [> Html_types.param ]) nullary
          val embed :
            ([< Html_types.embed_attrib ], [> Html_types.embed ]) nullary
          val audio :
            ?src:Xml.uri wrap ->
            ?srcs:[< Html_types.source ] elt list_wrap ->
            ([< Html_types.audio_attrib ], 'a, [> 'Html_types.audio ]) star
          val video :
            ?src:Xml.uri wrap ->
            ?srcs:[< Html_types.source ] elt list_wrap ->
            ([< Html_types.video_attrib ], 'a, [> 'Html_types.video ]) star
          val canvas :
            ([< Html_types.canvas_attrib ], 'a, [> 'Html_types.canvas ])
            star
          val source :
            ([< Html_types.source_attrib ], [> Html_types.source ]) nullary
          val area :
            alt:Html_types.text wrap ->
            ([< `Accesskey
              | `Alt
              | `Aria
              | `Class
              | `Contenteditable
              | `Contextmenu
              | `Coords
              | `Dir
              | `Draggable
              | `Hidden
              | `Hreflang
              | `Id
              | `Lang
              | `Media
              | `Mime_type
              | `OnAbort
              | `OnBlur
              | `OnCanPlay
              | `OnCanPlayThrough
              | `OnChange
              | `OnClick
              | `OnContextMenu
              | `OnDblClick
              | `OnDrag
              | `OnDragEnd
              | `OnDragEnter
              | `OnDragLeave
              | `OnDragOver
              | `OnDragStart
              | `OnDrop
              | `OnDurationChange
              | `OnEmptied
              | `OnEnded
              | `OnError
              | `OnFocus
              | `OnFormChange
              | `OnFormInput
              | `OnInput
              | `OnInvalid
              | `OnKeyDown
              | `OnKeyPress
              | `OnKeyUp
              | `OnLoad
              | `OnLoadStart
              | `OnLoadedData
              | `OnLoadedMetaData
              | `OnMouseDown
              | `OnMouseMove
              | `OnMouseOut
              | `OnMouseOver
              | `OnMouseUp
              | `OnMouseWheel
              | `OnPause
              | `OnPlay
              | `OnPlaying
              | `OnProgress
              | `OnRateChange
              | `OnReadyStateChange
              | `OnScroll
              | `OnSeeked
              | `OnSeeking
              | `OnSelect
              | `OnShow
              | `OnStalled
              | `OnSubmit
              | `OnSuspend
              | `OnTimeUpdate
              | `OnTouchCancel
              | `OnTouchEnd
              | `OnTouchMove
              | `OnTouchStart
              | `OnVolumeChange
              | `OnWaiting
              | `Rel
              | `Role
              | `Shape
              | `Spellcheck
              | `Style_Attr
              | `Tabindex
              | `Target
              | `Title
              | `Translate
              | `User_data
              | `XML_lang
              | `XMLns ],
             [> Html_types.area ])
            nullary
          val map :
            ([< Html_types.map_attrib ], 'a, [> 'Html_types.map ]) star
          val caption :
            ([< Html_types.caption_attrib ],
             [< Html_types.caption_content_fun ], [> Html_types.caption ])
            star
          val table :
            ?caption:[< Html_types.caption ] elt wrap ->
            ?columns:[< Html_types.colgroup ] elt list_wrap ->
            ?thead:[< Html_types.thead ] elt wrap ->
            ?tfoot:[< Html_types.tfoot ] elt wrap ->
            ([< Html_types.table_attrib ], [< Html_types.table_content_fun ],
             [> Html_types.table ])
            star
          val tablex :
            ?caption:[< Html_types.caption ] elt wrap ->
            ?columns:[< Html_types.colgroup ] elt list_wrap ->
            ?thead:[< Html_types.thead ] elt wrap ->
            ?tfoot:[< Html_types.tfoot ] elt wrap ->
            ([< Html_types.tablex_attrib ],
             [< Html_types.tablex_content_fun ], [> Html_types.tablex ])
            star
          val colgroup :
            ([< Html_types.colgroup_attrib ],
             [< Html_types.colgroup_content_fun ], [> Html_types.colgroup ])
            star
          val col : ([< Html_types.col_attrib ], [> Html_types.col ]) nullary
          val thead :
            ([< Html_types.thead_attrib ], [< Html_types.thead_content_fun ],
             [> Html_types.thead ])
            star
          val tbody :
            ([< Html_types.tbody_attrib ], [< Html_types.tbody_content_fun ],
             [> Html_types.tbody ])
            star
          val tfoot :
            ([< Html_types.tfoot_attrib ], [< Html_types.tfoot_content_fun ],
             [> Html_types.tfoot ])
            star
          val td :
            ([< Html_types.td_attrib ], [< Html_types.td_content_fun ],
             [> Html_types.td ])
            star
          val th :
            ([< Html_types.th_attrib ], [< Html_types.th_content_fun ],
             [> Html_types.th ])
            star
          val tr :
            ([< Html_types.tr_attrib ], [< Html_types.tr_content_fun ],
             [> Html_types.tr ])
            star
          val form :
            ([< Html_types.form_attrib ], [< Html_types.form_content_fun ],
             [> Html_types.form ])
            star
          val fieldset :
            ?legend:[< Html_types.legend ] elt wrap ->
            ([< Html_types.fieldset_attrib ],
             [< Html_types.fieldset_content_fun ], [> Html_types.fieldset ])
            star
          val legend :
            ([< Html_types.legend_attrib ],
             [< Html_types.legend_content_fun ], [> Html_types.legend ])
            star
          val label :
            ([< Html_types.label_attrib ], [< Html_types.label_content_fun ],
             [> Html_types.label ])
            star
          val input :
            ([< Html_types.input_attrib ], [> Html_types.input ]) nullary
          val button :
            ([< Html_types.button_attrib ],
             [< Html_types.button_content_fun ], [> Html_types.button ])
            star
          val select :
            ([< Html_types.select_attrib ],
             [< Html_types.select_content_fun ], [> Html_types.select ])
            star
          val datalist :
            ?children:[< `Options of
                           [< Html_types.selectoption ] elt list_wrap
                       | `Phras of [< Html_types.phrasing ] elt list_wrap ] ->
            ([< Html_types.datalist_attrib ], [> Html_types.datalist ])
            nullary
          val optgroup :
            label:Html_types.text wrap ->
            ([< Html_types.optgroup_attrib ],
             [< Html_types.optgroup_content_fun ], [> Html_types.optgroup ])
            star
          val option :
            ([< Html_types.option_attrib ],
             [< Html_types.option_content_fun ],
             [> Html_types.selectoption ])
            unary
          val textarea :
            ([< Html_types.textarea_attrib ],
             [< Html_types.textarea_content_fun ], [> Html_types.textarea ])
            unary
          val keygen :
            ([< Html_types.keygen_attrib ], [> Html_types.keygen ]) nullary
          val progress :
            ([< Html_types.progress_attrib ],
             [< Html_types.progress_content_fun ], [> Html_types.progress ])
            star
          val meter :
            ([< Html_types.meter_attrib ], [< Html_types.meter_content_fun ],
             [> Html_types.meter ])
            star
          val output_elt :
            ([< Html_types.output_elt_attrib ],
             [< Html_types.output_elt_content_fun ],
             [> Html_types.output_elt ])
            star
          val entity : string -> [> Html_types.txt ] elt
          val space : unit -> [> Html_types.txt ] elt
          val cdata : string -> [> Html_types.txt ] elt
          val cdata_script : string -> [> Html_types.txt ] elt
          val cdata_style : string -> [> Html_types.txt ] elt
          val details :
            [< Html_types.summary ] elt wrap ->
            ([< Html_types.details_attrib ],
             [< Html_types.details_content_fun ], [> Html_types.details ])
            star
          val summary :
            ([< Html_types.summary_attrib ],
             [< Html_types.summary_content_fun ], [> Html_types.summary ])
            star
          val command :
            label:Html_types.text wrap ->
            ([< Html_types.command_attrib ], [> Html_types.command ]) nullary
          val menu :
            ?children:[< `Flows of [< Html_types.flow5 ] elt list_wrap
                       | `Lis of
                           [< `Li of [< Html_types.common ] ] elt list_wrap ] ->
            ([< Html_types.menu_attrib ], [> Html_types.menu ]) nullary
          val script :
            ([< Html_types.script_attrib ],
             [< Html_types.script_content_fun ], [> Html_types.script ])
            unary
          val noscript :
            ([< Html_types.noscript_attrib ],
             [< Html_types.noscript_content_fun ], [> Html_types.noscript ])
            star
          val template :
            ([< Html_types.template_attrib ],
             [< Html_types.template_content_fun ], [> Html_types.template ])
            star
          val meta :
            ([< Html_types.meta_attrib ], [> Html_types.meta ]) nullary
          val style :
            ([< Html_types.style_attrib ], [< Html_types.style_content_fun ],
             [> Html_types.style ])
            star
          val link :
            rel:Html_types.linktypes wrap ->
            href:Xml.uri wrap ->
            ([< Html_types.link_attrib ], [> Html_types.link ]) nullary
          val rt :
            ([< Html_types.rt_attrib ], [< Html_types.rt_content_fun ],
             [> Html_types.rt ])
            star
          val rp :
            ([< Html_types.rp_attrib ], [< Html_types.rp_content_fun ],
             [> Html_types.rp ])
            star
          val ruby :
            ([< Html_types.ruby_attrib ], [< Html_types.ruby_content_fun ],
             [> Html_types.ruby ])
            star
          val pcdata : string wrap -> [> Html_types.pcdata ] elt
          val of_seq : Xml_stream.signal Seq.t -> 'a elt list_wrap
          val tot : Xml.elt -> 'a elt
          val totl : Xml.elt list_wrap -> 'a elt list_wrap
          val toelt : 'a elt -> Xml.elt
          val toeltl : 'a elt list_wrap -> Xml.elt list_wrap
          val doc_toelt : doc -> Xml.elt
          val to_xmlattribs : 'a attrib list -> Xml.attrib list
          val to_attrib : Xml.attrib -> 'a attrib
          module Unsafe :
            sig
              val data : string wrap -> 'a elt
              val node :
                string -> ?a:'a attrib list -> 'b elt list_wrap -> 'c elt
              val leaf : string -> ?a:'a attrib list -> unit -> 'b elt
              val coerce_elt : 'a elt -> 'b elt
              val string_attrib : string -> string wrap -> 'a attrib
              val float_attrib : string -> float wrap -> 'a attrib
              val int_attrib : string -> int wrap -> 'a attrib
              val uri_attrib : string -> uri wrap -> 'a attrib
              val space_sep_attrib : string -> string list wrap -> 'a attrib
              val comma_sep_attrib : string -> string list wrap -> 'a attrib
            end
        end
      module C :
        sig
          val node :
            ?init:'Eliom_content.Html.D.elt ->
            'Eliom_content.Html.elt Eliom_client_value.t ->
            'Eliom_content.Html.D.elt
          val attr :
            ?init:'Eliom_content.Html.attrib ->
            'Eliom_content.Html.attrib Eliom_client_value.t ->
            'Eliom_content.Html.attrib
        end
      module Id :
        sig
          type +'a id
          val new_elt_id :
            ?global:bool -> unit -> 'Eliom_content.Html.Id.id
          val create_named_elt :
            id:'Eliom_content.Html.Id.id ->
            'Eliom_content.Html.elt -> 'Eliom_content.Html.elt
          val create_global_elt :
            'Eliom_content.Html.elt -> 'Eliom_content.Html.elt
          val create_request_elt :
            ?reset:bool ->
            'Eliom_content.Html.elt -> 'Eliom_content.Html.elt
          val get_element :
            'Eliom_content.Html.Id.id -> 'Eliom_content.Html.elt option
        end
      module Custom_data :
        sig
          type 'a t
          val create :
            name:string ->
            ?default:'->
            to_string:('-> string) ->
            of_string:(string -> 'a) ->
            unit -> 'Eliom_content.Html.Custom_data.t
          val create_json :
            name:string ->
            ?default:'->
            'Deriving_Json.t -> 'Eliom_content.Html.Custom_data.t
          val attrib :
            'Eliom_content.Html.Custom_data.t ->
            '-> [> `User_data ] Eliom_content.Html.attrib
          val get_dom :
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t ->
            'Eliom_content.Html.Custom_data.t -> 'a
          val set_dom :
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t ->
            'Eliom_content.Html.Custom_data.t -> '-> unit
        end
      module To_dom :
        sig
          type 'a elt = 'a elt
          val of_element :
            'a elt -> Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_node : 'a elt -> Js_of_ocaml.Dom.node Js_of_ocaml.Js.t
          val of_pcdata :
            [< Html_types.pcdata ] elt ->
            Js_of_ocaml.Dom.text Js_of_ocaml.Js.t
          val of_html :
            [< Html_types.html ] elt ->
            Js_of_ocaml.Dom_html.htmlElement Js_of_ocaml.Js.t
          val of_head :
            [< Html_types.head ] elt ->
            Js_of_ocaml.Dom_html.headElement Js_of_ocaml.Js.t
          val of_link :
            [< Html_types.link ] elt ->
            Js_of_ocaml.Dom_html.linkElement Js_of_ocaml.Js.t
          val of_title :
            [< Html_types.title ] elt ->
            Js_of_ocaml.Dom_html.titleElement Js_of_ocaml.Js.t
          val of_meta :
            [< Html_types.meta ] elt ->
            Js_of_ocaml.Dom_html.metaElement Js_of_ocaml.Js.t
          val of_base :
            [< Html_types.base ] elt ->
            Js_of_ocaml.Dom_html.baseElement Js_of_ocaml.Js.t
          val of_style :
            [< Html_types.style ] elt ->
            Js_of_ocaml.Dom_html.styleElement Js_of_ocaml.Js.t
          val of_body :
            [< Html_types.body ] elt ->
            Js_of_ocaml.Dom_html.bodyElement Js_of_ocaml.Js.t
          val of_form :
            [< Html_types.form ] elt ->
            Js_of_ocaml.Dom_html.formElement Js_of_ocaml.Js.t
          val of_optgroup :
            [< Html_types.optgroup ] elt ->
            Js_of_ocaml.Dom_html.optGroupElement Js_of_ocaml.Js.t
          val of_option :
            [< Html_types.selectoption ] elt ->
            Js_of_ocaml.Dom_html.optionElement Js_of_ocaml.Js.t
          val of_select :
            [< Html_types.select ] elt ->
            Js_of_ocaml.Dom_html.selectElement Js_of_ocaml.Js.t
          val of_input :
            [< Html_types.input ] elt ->
            Js_of_ocaml.Dom_html.inputElement Js_of_ocaml.Js.t
          val of_textarea :
            [< Html_types.textarea ] elt ->
            Js_of_ocaml.Dom_html.textAreaElement Js_of_ocaml.Js.t
          val of_button :
            [< Html_types.button ] elt ->
            Js_of_ocaml.Dom_html.buttonElement Js_of_ocaml.Js.t
          val of_label :
            [< Html_types.label ] elt ->
            Js_of_ocaml.Dom_html.labelElement Js_of_ocaml.Js.t
          val of_fieldset :
            [< Html_types.fieldset ] elt ->
            Js_of_ocaml.Dom_html.fieldSetElement Js_of_ocaml.Js.t
          val of_legend :
            [< Html_types.legend ] elt ->
            Js_of_ocaml.Dom_html.legendElement Js_of_ocaml.Js.t
          val of_ul :
            [< Html_types.ul ] elt ->
            Js_of_ocaml.Dom_html.uListElement Js_of_ocaml.Js.t
          val of_ol :
            [< Html_types.ol ] elt ->
            Js_of_ocaml.Dom_html.oListElement Js_of_ocaml.Js.t
          val of_dl :
            [< Html_types.dl ] elt ->
            Js_of_ocaml.Dom_html.dListElement Js_of_ocaml.Js.t
          val of_li :
            [< Html_types.li ] elt ->
            Js_of_ocaml.Dom_html.liElement Js_of_ocaml.Js.t
          val of_div :
            [< Html_types.div ] elt ->
            Js_of_ocaml.Dom_html.divElement Js_of_ocaml.Js.t
          val of_p :
            [< Html_types.p ] elt ->
            Js_of_ocaml.Dom_html.paragraphElement Js_of_ocaml.Js.t
          val of_heading :
            [< Html_types.heading ] elt ->
            Js_of_ocaml.Dom_html.headingElement Js_of_ocaml.Js.t
          val of_blockquote :
            [< Html_types.blockquote ] elt ->
            Js_of_ocaml.Dom_html.quoteElement Js_of_ocaml.Js.t
          val of_pre :
            [< Html_types.pre ] elt ->
            Js_of_ocaml.Dom_html.preElement Js_of_ocaml.Js.t
          val of_br :
            [< Html_types.br ] elt ->
            Js_of_ocaml.Dom_html.brElement Js_of_ocaml.Js.t
          val of_hr :
            [< Html_types.hr ] elt ->
            Js_of_ocaml.Dom_html.hrElement Js_of_ocaml.Js.t
          val of_del :
            [< 'Html_types.del ] elt ->
            Js_of_ocaml.Dom_html.modElement Js_of_ocaml.Js.t
          val of_ins :
            [< 'Html_types.ins ] elt ->
            Js_of_ocaml.Dom_html.modElement Js_of_ocaml.Js.t
          val of_a :
            [< 'Html_types.a ] elt ->
            Js_of_ocaml.Dom_html.anchorElement Js_of_ocaml.Js.t
          val of_img :
            [< Html_types.img_interactive ] elt ->
            Js_of_ocaml.Dom_html.imageElement Js_of_ocaml.Js.t
          val of_object :
            [< 'Html_types.object_ ] elt ->
            Js_of_ocaml.Dom_html.objectElement Js_of_ocaml.Js.t
          val of_param :
            [< Html_types.param ] elt ->
            Js_of_ocaml.Dom_html.paramElement Js_of_ocaml.Js.t
          val of_area :
            [< Html_types.area ] elt ->
            Js_of_ocaml.Dom_html.areaElement Js_of_ocaml.Js.t
          val of_map :
            [< 'Html_types.map ] elt ->
            Js_of_ocaml.Dom_html.mapElement Js_of_ocaml.Js.t
          val of_script :
            [< Html_types.script ] elt ->
            Js_of_ocaml.Dom_html.scriptElement Js_of_ocaml.Js.t
          val of_td :
            [< `Td ] elt ->
            Js_of_ocaml.Dom_html.tableCellElement Js_of_ocaml.Js.t
          val of_tr :
            [< Html_types.tr ] elt ->
            Js_of_ocaml.Dom_html.tableRowElement Js_of_ocaml.Js.t
          val of_col :
            [< Html_types.col ] elt ->
            Js_of_ocaml.Dom_html.tableColElement Js_of_ocaml.Js.t
          val of_tfoot :
            [< Html_types.tfoot ] elt ->
            Js_of_ocaml.Dom_html.tableSectionElement Js_of_ocaml.Js.t
          val of_thead :
            [< Html_types.thead ] elt ->
            Js_of_ocaml.Dom_html.tableSectionElement Js_of_ocaml.Js.t
          val of_tbody :
            [< Html_types.tbody ] elt ->
            Js_of_ocaml.Dom_html.tableSectionElement Js_of_ocaml.Js.t
          val of_caption :
            [< Html_types.caption ] elt ->
            Js_of_ocaml.Dom_html.tableCaptionElement Js_of_ocaml.Js.t
          val of_table :
            [< Html_types.table ] elt ->
            Js_of_ocaml.Dom_html.tableElement Js_of_ocaml.Js.t
          val of_canvas :
            [< 'Html_types.canvas ] elt ->
            Js_of_ocaml.Dom_html.canvasElement Js_of_ocaml.Js.t
          val of_iframe :
            [< Html_types.iframe ] elt ->
            Js_of_ocaml.Dom_html.iFrameElement Js_of_ocaml.Js.t
          val of_audio :
            [< 'Html_types.audio_interactive ] elt ->
            Js_of_ocaml.Dom_html.audioElement Js_of_ocaml.Js.t
          val of_video :
            [< 'Html_types.video_interactive ] elt ->
            Js_of_ocaml.Dom_html.videoElement Js_of_ocaml.Js.t
          val of_h1 :
            Html_types.heading elt ->
            Js_of_ocaml.Dom_html.headingElement Js_of_ocaml.Js.t
          val of_h2 :
            Html_types.heading elt ->
            Js_of_ocaml.Dom_html.headingElement Js_of_ocaml.Js.t
          val of_h3 :
            Html_types.heading elt ->
            Js_of_ocaml.Dom_html.headingElement Js_of_ocaml.Js.t
          val of_h4 :
            Html_types.heading elt ->
            Js_of_ocaml.Dom_html.headingElement Js_of_ocaml.Js.t
          val of_h5 :
            Html_types.heading elt ->
            Js_of_ocaml.Dom_html.headingElement Js_of_ocaml.Js.t
          val of_h6 :
            Html_types.heading elt ->
            Js_of_ocaml.Dom_html.headingElement Js_of_ocaml.Js.t
          val of_abbr :
            [> Html_types.abbr ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_address :
            [> Html_types.address ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_article :
            [> Html_types.article ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_aside :
            [> Html_types.aside ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_b :
            [> Html_types.b ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_bdo :
            [> Html_types.bdo ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_cite :
            [> Html_types.cite ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_code :
            [> Html_types.code ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_colgroup :
            [> Html_types.colgroup ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_command :
            [> Html_types.command ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_datalist :
            [> Html_types.datalist ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_dd :
            [> Html_types.dd ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_details :
            [> Html_types.details ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_dfn :
            [> Html_types.dfn ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_dt :
            [> Html_types.dt ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_em :
            [> Html_types.em ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_embed :
            [> Html_types.embed ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_figcaption :
            [> Html_types.figcaption ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_figure :
            [> Html_types.figure ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_footer :
            [> Html_types.footer ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_header :
            [> Html_types.header ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_hgroup :
            [> Html_types.hgroup ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_i :
            [> Html_types.i ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_kbd :
            [> Html_types.kbd ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_keygen :
            [> Html_types.keygen ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_main :
            [> Html_types.main ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_mark :
            [> Html_types.mark ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_menu :
            [> Html_types.menu ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_meter :
            [> Html_types.meter ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_nav :
            [> Html_types.nav ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_noscript :
            [> Html_types.noscript ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_output :
            [> Html_types.output_elt ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_progress :
            [> Html_types.progress ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_q :
            [> Html_types.q ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_rp :
            [> Html_types.rp ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_rt :
            [> Html_types.rt ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_ruby :
            [> Html_types.ruby ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_samp :
            [> Html_types.samp ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_section :
            [> Html_types.section ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_small :
            [> Html_types.small ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_source :
            [> Html_types.source ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_span :
            [> Html_types.span ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_strong :
            [> Html_types.strong ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_sub :
            [> Html_types.sub ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_summary :
            [> Html_types.summary ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_sup :
            [> Html_types.sup ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_th :
            [> Html_types.th ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_time :
            [> Html_types.time ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_u :
            [> Html_types.u ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_var :
            [> Html_types.var ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
          val of_wbr :
            [> Html_types.wbr ] elt ->
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t
        end
      module Manip :
        sig
          val appendChild :
            ?before:'Eliom_content.Html.elt ->
            'Eliom_content.Html.elt -> 'Eliom_content.Html.elt -> unit
          val appendToBody :
            ?before:'Eliom_content.Html.elt ->
            'Eliom_content.Html.elt -> unit
          val appendChildren :
            ?before:'Eliom_content.Html.elt ->
            'Eliom_content.Html.elt ->
            'Eliom_content.Html.elt list -> unit
          val insertFirstChild :
            'Eliom_content.Html.elt -> 'Eliom_content.Html.elt -> unit
          val nth :
            'Eliom_content.Html.elt ->
            int -> 'Eliom_content.Html.elt option
          val childLength : 'Eliom_content.Html.elt -> int
          val removeChild :
            'Eliom_content.Html.elt -> 'Eliom_content.Html.elt -> unit
          val replaceChild :
            'Eliom_content.Html.elt ->
            'Eliom_content.Html.elt -> 'Eliom_content.Html.elt -> unit
          val removeChildren : 'Eliom_content.Html.elt -> unit
          val removeSelf : 'Eliom_content.Html.elt -> unit
          val replaceChildren :
            'Eliom_content.Html.elt ->
            'Eliom_content.Html.elt list -> unit
          val parentNode :
            'Eliom_content.Html.elt -> 'Eliom_content.Html.elt option
          val nextSibling :
            'Eliom_content.Html.elt -> 'Eliom_content.Html.elt option
          val previousSibling :
            'Eliom_content.Html.elt -> 'Eliom_content.Html.elt option
          val insertBefore :
            before:'Eliom_content.Html.elt ->
            'Eliom_content.Html.elt -> unit
          val insertAfter :
            after:'Eliom_content.Html.elt ->
            'Eliom_content.Html.elt -> unit
          val replaceSelf :
            'Eliom_content.Html.elt -> 'Eliom_content.Html.elt -> unit
          val children :
            'Eliom_content.Html.elt -> 'Eliom_content.Html.elt list
          val addEventListener :
            ?capture:bool ->
            'Eliom_content.Html.elt ->
            (#Js_of_ocaml.Dom_html.event as 'b) Js_of_ocaml.Js.t
            Js_of_ocaml.Dom_html.Event.typ ->
            ('Eliom_content.Html.elt -> 'Js_of_ocaml.Js.t -> bool) ->
            Js_of_ocaml.Dom_html.event_listener_id
          module Named :
            sig
              val appendChild :
                ?before:'Eliom_content.Html.elt ->
                'Eliom_content.Html.Id.id ->
                'Eliom_content.Html.elt -> unit
              val appendChildren :
                ?before:'Eliom_content.Html.elt ->
                'Eliom_content.Html.Id.id ->
                'Eliom_content.Html.elt list -> unit
              val removeChild :
                'Eliom_content.Html.Id.id ->
                'Eliom_content.Html.elt -> unit
              val replaceChild :
                'Eliom_content.Html.Id.id ->
                'Eliom_content.Html.elt ->
                'Eliom_content.Html.elt -> unit
              val removeChildren : 'Eliom_content.Html.Id.id -> unit
              val replaceChildren :
                'Eliom_content.Html.Id.id ->
                'Eliom_content.Html.elt list -> unit
              val addEventListener :
                ?capture:bool ->
                'Eliom_content.Html.Id.id ->
                (#Js_of_ocaml.Dom_html.event as 'b) Js_of_ocaml.Js.t
                Js_of_ocaml.Dom_html.Event.typ ->
                ('Eliom_content.Html.elt -> 'Js_of_ocaml.Js.t -> bool) ->
                Js_of_ocaml.Dom_html.event_listener_id
            end
          val scrollIntoView :
            ?bottom:bool -> 'Eliom_content.Html.elt -> unit
          val childNodes :
            'Eliom_content.Html.elt ->
            Js_of_ocaml.Dom.node Js_of_ocaml.Js.t list
          val childElements :
            'Eliom_content.Html.elt ->
            Js_of_ocaml.Dom.element Js_of_ocaml.Js.t list
          module Class :
            sig
              val contain : 'Eliom_content.Html.elt -> string -> bool
              val remove : 'Eliom_content.Html.elt -> string -> unit
              val removes : 'Eliom_content.Html.elt -> string list -> unit
              val add : 'Eliom_content.Html.elt -> string -> unit
              val adds : 'Eliom_content.Html.elt -> string list -> unit
              val replace :
                'Eliom_content.Html.elt -> string -> string -> unit
              val clear : 'Eliom_content.Html.elt -> unit
              val toggle : 'Eliom_content.Html.elt -> string -> unit
              val toggle2 :
                'Eliom_content.Html.elt -> string -> string -> unit
            end
          module Elt :
            sig val body : unit -> [ `Body ] Eliom_content.Html.elt end
          module Ev :
            sig
              type ('a, 'b) ev =
                  'Eliom_content.Html.elt ->
                  ('Js_of_ocaml.Js.t -> bool) -> unit
              type ('a, 'b) ev_unit =
                  'Eliom_content.Html.elt ->
                  ('Js_of_ocaml.Js.t -> unit) -> unit
              val onkeyup :
                ('a, Js_of_ocaml.Dom_html.keyboardEvent)
                Eliom_content.Html.Manip.Ev.ev
              val onkeydown :
                ('a, Js_of_ocaml.Dom_html.keyboardEvent)
                Eliom_content.Html.Manip.Ev.ev
              val onmouseup :
                ('a, Js_of_ocaml.Dom_html.mouseEvent)
                Eliom_content.Html.Manip.Ev.ev
              val onmousedown :
                ('a, Js_of_ocaml.Dom_html.mouseEvent)
                Eliom_content.Html.Manip.Ev.ev
              val onmouseout :
                ('a, Js_of_ocaml.Dom_html.mouseEvent)
                Eliom_content.Html.Manip.Ev.ev
              val onmouseover :
                ('a, Js_of_ocaml.Dom_html.mouseEvent)
                Eliom_content.Html.Manip.Ev.ev
              val onclick :
                ('a, Js_of_ocaml.Dom_html.mouseEvent)
                Eliom_content.Html.Manip.Ev.ev
              val ondblclick :
                ('a, Js_of_ocaml.Dom_html.mouseEvent)
                Eliom_content.Html.Manip.Ev.ev
              val onload :
                ('a, Js_of_ocaml.Dom_html.event)
                Eliom_content.Html.Manip.Ev.ev
              val onerror :
                ('a, Js_of_ocaml.Dom_html.event)
                Eliom_content.Html.Manip.Ev.ev
              val onabort :
                ('a, Js_of_ocaml.Dom_html.event)
                Eliom_content.Html.Manip.Ev.ev
              val onfocus :
                ('a, Js_of_ocaml.Dom_html.event)
                Eliom_content.Html.Manip.Ev.ev
              val onblur :
                ('a, Js_of_ocaml.Dom_html.event)
                Eliom_content.Html.Manip.Ev.ev
              val onfocus_textarea :
                ('a, Js_of_ocaml.Dom_html.event)
                Eliom_content.Html.Manip.Ev.ev
              val onblur_textarea :
                ('a, Js_of_ocaml.Dom_html.event)
                Eliom_content.Html.Manip.Ev.ev
              val onscroll :
                ('a, Js_of_ocaml.Dom_html.event)
                Eliom_content.Html.Manip.Ev.ev
              val onreturn :
                ('a, Js_of_ocaml.Dom_html.keyboardEvent)
                Eliom_content.Html.Manip.Ev.ev_unit
              val onchange :
                ('a, Js_of_ocaml.Dom_html.event)
                Eliom_content.Html.Manip.Ev.ev
              val onchange_select :
                ('a, Js_of_ocaml.Dom_html.event)
                Eliom_content.Html.Manip.Ev.ev
            end
          module Attr :
            sig
              val clientWidth : 'Eliom_content.Html.elt -> int
              val clientHeight : 'Eliom_content.Html.elt -> int
              val offsetWidth : 'Eliom_content.Html.elt -> int
              val offsetHeight : 'Eliom_content.Html.elt -> int
              val clientLeft : 'Eliom_content.Html.elt -> int
              val clientTop : 'Eliom_content.Html.elt -> int
            end
          module Css :
            sig
              val background : 'Eliom_content.Html.elt -> string
              val backgroundAttachment : 'Eliom_content.Html.elt -> string
              val backgroundColor : 'Eliom_content.Html.elt -> string
              val backgroundImage : 'Eliom_content.Html.elt -> string
              val backgroundPosition : 'Eliom_content.Html.elt -> string
              val backgroundRepeat : 'Eliom_content.Html.elt -> string
              val border : 'Eliom_content.Html.elt -> string
              val borderBottom : 'Eliom_content.Html.elt -> string
              val borderBottomColor : 'Eliom_content.Html.elt -> string
              val borderBottomStyle : 'Eliom_content.Html.elt -> string
              val borderBottomWidth : 'Eliom_content.Html.elt -> string
              val borderBottomWidthPx : 'Eliom_content.Html.elt -> int
              val borderCollapse : 'Eliom_content.Html.elt -> string
              val borderColor : 'Eliom_content.Html.elt -> string
              val borderLeft : 'Eliom_content.Html.elt -> string
              val borderLeftColor : 'Eliom_content.Html.elt -> string
              val borderLeftStyle : 'Eliom_content.Html.elt -> string
              val borderLeftWidth : 'Eliom_content.Html.elt -> string
              val borderLeftWidthPx : 'Eliom_content.Html.elt -> int
              val borderRight : 'Eliom_content.Html.elt -> string
              val borderRightColor : 'Eliom_content.Html.elt -> string
              val borderRightStyle : 'Eliom_content.Html.elt -> string
              val borderRightWidth : 'Eliom_content.Html.elt -> string
              val borderRightWidthPx : 'Eliom_content.Html.elt -> int
              val borderSpacing : 'Eliom_content.Html.elt -> string
              val borderStyle : 'Eliom_content.Html.elt -> string
              val borderTop : 'Eliom_content.Html.elt -> string
              val borderTopColor : 'Eliom_content.Html.elt -> string
              val borderTopStyle : 'Eliom_content.Html.elt -> string
              val borderTopWidth : 'Eliom_content.Html.elt -> string
              val borderTopWidthPx : 'Eliom_content.Html.elt -> int
              val borderWidth : 'Eliom_content.Html.elt -> string
              val bottom : 'Eliom_content.Html.elt -> string
              val captionSide : 'Eliom_content.Html.elt -> string
              val clear : 'Eliom_content.Html.elt -> string
              val clip : 'Eliom_content.Html.elt -> string
              val color : 'Eliom_content.Html.elt -> string
              val content : 'Eliom_content.Html.elt -> string
              val counterIncrement : 'Eliom_content.Html.elt -> string
              val counterReset : 'Eliom_content.Html.elt -> string
              val cssFloat : 'Eliom_content.Html.elt -> string
              val cssText : 'Eliom_content.Html.elt -> string
              val cursor : 'Eliom_content.Html.elt -> string
              val direction : 'Eliom_content.Html.elt -> string
              val display : 'Eliom_content.Html.elt -> string
              val emptyCells : 'Eliom_content.Html.elt -> string
              val font : 'Eliom_content.Html.elt -> string
              val fontFamily : 'Eliom_content.Html.elt -> string
              val fontSize : 'Eliom_content.Html.elt -> string
              val fontStyle : 'Eliom_content.Html.elt -> string
              val fontVariant : 'Eliom_content.Html.elt -> string
              val fontWeight : 'Eliom_content.Html.elt -> string
              val height : 'Eliom_content.Html.elt -> string
              val heightPx : 'Eliom_content.Html.elt -> int
              val left : 'Eliom_content.Html.elt -> string
              val leftPx : 'Eliom_content.Html.elt -> int
              val letterSpacing : 'Eliom_content.Html.elt -> string
              val lineHeight : 'Eliom_content.Html.elt -> string
              val listStyle : 'Eliom_content.Html.elt -> string
              val listStyleImage : 'Eliom_content.Html.elt -> string
              val listStylePosition : 'Eliom_content.Html.elt -> string
              val listStyleType : 'Eliom_content.Html.elt -> string
              val margin : 'Eliom_content.Html.elt -> string
              val marginBottom : 'Eliom_content.Html.elt -> string
              val marginBottomPx : 'Eliom_content.Html.elt -> int
              val marginLeft : 'Eliom_content.Html.elt -> string
              val marginLeftPx : 'Eliom_content.Html.elt -> int
              val marginRight : 'Eliom_content.Html.elt -> string
              val marginRightPx : 'Eliom_content.Html.elt -> int
              val marginTop : 'Eliom_content.Html.elt -> string
              val marginTopPx : 'Eliom_content.Html.elt -> int
              val maxHeight : 'Eliom_content.Html.elt -> string
              val maxHeightPx : 'Eliom_content.Html.elt -> int
              val maxWidth : 'Eliom_content.Html.elt -> string
              val maxWidthPx : 'Eliom_content.Html.elt -> int
              val minHeight : 'Eliom_content.Html.elt -> string
              val minHeightPx : 'Eliom_content.Html.elt -> int
              val minWidth : 'Eliom_content.Html.elt -> string
              val minWidthPx : 'Eliom_content.Html.elt -> int
              val opacity : 'Eliom_content.Html.elt -> string option
              val outline : 'Eliom_content.Html.elt -> string
              val outlineColor : 'Eliom_content.Html.elt -> string
              val outlineOffset : 'Eliom_content.Html.elt -> string
              val outlineStyle : 'Eliom_content.Html.elt -> string
              val outlineWidth : 'Eliom_content.Html.elt -> string
              val overflow : 'Eliom_content.Html.elt -> string
              val overflowX : 'Eliom_content.Html.elt -> string
              val overflowY : 'Eliom_content.Html.elt -> string
              val padding : 'Eliom_content.Html.elt -> string
              val paddingBottom : 'Eliom_content.Html.elt -> string
              val paddingBottomPx : 'Eliom_content.Html.elt -> int
              val paddingLeft : 'Eliom_content.Html.elt -> string
              val paddingLeftPx : 'Eliom_content.Html.elt -> int
              val paddingRight : 'Eliom_content.Html.elt -> string
              val paddingRightPx : 'Eliom_content.Html.elt -> int
              val paddingTop : 'Eliom_content.Html.elt -> string
              val paddingTopPx : 'Eliom_content.Html.elt -> int
              val pageBreakAfter : 'Eliom_content.Html.elt -> string
              val pageBreakBefore : 'Eliom_content.Html.elt -> string
              val position : 'Eliom_content.Html.elt -> string
              val right : 'Eliom_content.Html.elt -> string
              val rightPx : 'Eliom_content.Html.elt -> int
              val tableLayout : 'Eliom_content.Html.elt -> string
              val textAlign : 'Eliom_content.Html.elt -> string
              val textDecoration : 'Eliom_content.Html.elt -> string
              val textIndent : 'Eliom_content.Html.elt -> string
              val textTransform : 'Eliom_content.Html.elt -> string
              val top : 'Eliom_content.Html.elt -> string
              val topPx : 'Eliom_content.Html.elt -> int
              val verticalAlign : 'Eliom_content.Html.elt -> string
              val visibility : 'Eliom_content.Html.elt -> string
              val whiteSpace : 'Eliom_content.Html.elt -> string
              val width : 'Eliom_content.Html.elt -> string
              val widthPx : 'Eliom_content.Html.elt -> int
              val wordSpacing : 'Eliom_content.Html.elt -> string
              val zIndex : 'Eliom_content.Html.elt -> string
            end
          module SetCss :
            sig
              val background : 'Eliom_content.Html.elt -> string -> unit
              val backgroundAttachment :
                'Eliom_content.Html.elt -> string -> unit
              val backgroundColor :
                'Eliom_content.Html.elt -> string -> unit
              val backgroundImage :
                'Eliom_content.Html.elt -> string -> unit
              val backgroundPosition :
                'Eliom_content.Html.elt -> string -> unit
              val backgroundRepeat :
                'Eliom_content.Html.elt -> string -> unit
              val border : 'Eliom_content.Html.elt -> string -> unit
              val borderBottom : 'Eliom_content.Html.elt -> string -> unit
              val borderBottomColor :
                'Eliom_content.Html.elt -> string -> unit
              val borderBottomStyle :
                'Eliom_content.Html.elt -> string -> unit
              val borderBottomWidth :
                'Eliom_content.Html.elt -> string -> unit
              val borderBottomWidthPx :
                'Eliom_content.Html.elt -> int -> unit
              val borderCollapse :
                'Eliom_content.Html.elt -> string -> unit
              val borderColor : 'Eliom_content.Html.elt -> string -> unit
              val borderLeft : 'Eliom_content.Html.elt -> string -> unit
              val borderLeftColor :
                'Eliom_content.Html.elt -> string -> unit
              val borderLeftStyle :
                'Eliom_content.Html.elt -> string -> unit
              val borderLeftWidth :
                'Eliom_content.Html.elt -> string -> unit
              val borderLeftWidthPx :
                'Eliom_content.Html.elt -> int -> unit
              val borderRight : 'Eliom_content.Html.elt -> string -> unit
              val borderRightColor :
                'Eliom_content.Html.elt -> string -> unit
              val borderRightStyle :
                'Eliom_content.Html.elt -> string -> unit
              val borderRightWidth :
                'Eliom_content.Html.elt -> string -> unit
              val borderRightWidthPx :
                'Eliom_content.Html.elt -> int -> unit
              val borderSpacing : 'Eliom_content.Html.elt -> string -> unit
              val borderStyle : 'Eliom_content.Html.elt -> string -> unit
              val borderTop : 'Eliom_content.Html.elt -> string -> unit
              val borderTopColor :
                'Eliom_content.Html.elt -> string -> unit
              val borderTopStyle :
                'Eliom_content.Html.elt -> string -> unit
              val borderTopWidth :
                'Eliom_content.Html.elt -> string -> unit
              val borderTopWidthPx : 'Eliom_content.Html.elt -> int -> unit
              val borderWidth : 'Eliom_content.Html.elt -> string -> unit
              val bottom : 'Eliom_content.Html.elt -> string -> unit
              val bottomPx : 'Eliom_content.Html.elt -> int -> unit
              val captionSide : 'Eliom_content.Html.elt -> string -> unit
              val clear : 'Eliom_content.Html.elt -> string -> unit
              val clip : 'Eliom_content.Html.elt -> string -> unit
              val color : 'Eliom_content.Html.elt -> string -> unit
              val content : 'Eliom_content.Html.elt -> string -> unit
              val counterIncrement :
                'Eliom_content.Html.elt -> string -> unit
              val counterReset : 'Eliom_content.Html.elt -> string -> unit
              val cssFloat : 'Eliom_content.Html.elt -> string -> unit
              val cssText : 'Eliom_content.Html.elt -> string -> unit
              val cursor : 'Eliom_content.Html.elt -> string -> unit
              val direction : 'Eliom_content.Html.elt -> string -> unit
              val display : 'Eliom_content.Html.elt -> string -> unit
              val emptyCells : 'Eliom_content.Html.elt -> string -> unit
              val font : 'Eliom_content.Html.elt -> string -> unit
              val fontFamily : 'Eliom_content.Html.elt -> string -> unit
              val fontSize : 'Eliom_content.Html.elt -> string -> unit
              val fontStyle : 'Eliom_content.Html.elt -> string -> unit
              val fontVariant : 'Eliom_content.Html.elt -> string -> unit
              val fontWeight : 'Eliom_content.Html.elt -> string -> unit
              val height : 'Eliom_content.Html.elt -> string -> unit
              val heightPx : 'Eliom_content.Html.elt -> int -> unit
              val left : 'Eliom_content.Html.elt -> string -> unit
              val leftPx : 'Eliom_content.Html.elt -> int -> unit
              val letterSpacing : 'Eliom_content.Html.elt -> string -> unit
              val lineHeight : 'Eliom_content.Html.elt -> string -> unit
              val listStyle : 'Eliom_content.Html.elt -> string -> unit
              val listStyleImage :
                'Eliom_content.Html.elt -> string -> unit
              val listStylePosition :
                'Eliom_content.Html.elt -> string -> unit
              val listStyleType : 'Eliom_content.Html.elt -> string -> unit
              val margin : 'Eliom_content.Html.elt -> string -> unit
              val marginBottom : 'Eliom_content.Html.elt -> string -> unit
              val marginBottomPx : 'Eliom_content.Html.elt -> int -> unit
              val marginLeft : 'Eliom_content.Html.elt -> string -> unit
              val marginLeftPx : 'Eliom_content.Html.elt -> int -> unit
              val marginRight : 'Eliom_content.Html.elt -> string -> unit
              val marginRightPx : 'Eliom_content.Html.elt -> int -> unit
              val marginTop : 'Eliom_content.Html.elt -> string -> unit
              val marginTopPx : 'Eliom_content.Html.elt -> int -> unit
              val maxHeight : 'Eliom_content.Html.elt -> string -> unit
              val maxHeightPx : 'Eliom_content.Html.elt -> int -> unit
              val maxWidth : 'Eliom_content.Html.elt -> string -> unit
              val maxWidthPx : 'Eliom_content.Html.elt -> int -> unit
              val minHeight : 'Eliom_content.Html.elt -> string -> unit
              val minHeightPx : 'Eliom_content.Html.elt -> int -> unit
              val minWidth : 'Eliom_content.Html.elt -> string -> unit
              val minWidthPx : 'Eliom_content.Html.elt -> int -> unit
              val opacity : 'Eliom_content.Html.elt -> string -> unit
              val outline : 'Eliom_content.Html.elt -> string -> unit
              val outlineColor : 'Eliom_content.Html.elt -> string -> unit
              val outlineOffset : 'Eliom_content.Html.elt -> string -> unit
              val outlineStyle : 'Eliom_content.Html.elt -> string -> unit
              val outlineWidth : 'Eliom_content.Html.elt -> string -> unit
              val overflow : 'Eliom_content.Html.elt -> string -> unit
              val overflowX : 'Eliom_content.Html.elt -> string -> unit
              val overflowY : 'Eliom_content.Html.elt -> string -> unit
              val padding : 'Eliom_content.Html.elt -> string -> unit
              val paddingBottom : 'Eliom_content.Html.elt -> string -> unit
              val paddingBottomPx : 'Eliom_content.Html.elt -> int -> unit
              val paddingLeft : 'Eliom_content.Html.elt -> string -> unit
              val paddingLeftPx : 'Eliom_content.Html.elt -> int -> unit
              val paddingRight : 'Eliom_content.Html.elt -> string -> unit
              val paddingRightPx : 'Eliom_content.Html.elt -> int -> unit
              val paddingTop : 'Eliom_content.Html.elt -> string -> unit
              val paddingTopPx : 'Eliom_content.Html.elt -> int -> unit
              val pageBreakAfter :
                'Eliom_content.Html.elt -> string -> unit
              val pageBreakBefore :
                'Eliom_content.Html.elt -> string -> unit
              val position : 'Eliom_content.Html.elt -> string -> unit
              val right : 'Eliom_content.Html.elt -> string -> unit
              val rightPx : 'Eliom_content.Html.elt -> int -> unit
              val tableLayout : 'Eliom_content.Html.elt -> string -> unit
              val textAlign : 'Eliom_content.Html.elt -> string -> unit
              val textDecoration :
                'Eliom_content.Html.elt -> string -> unit
              val textIndent : 'Eliom_content.Html.elt -> string -> unit
              val textTransform : 'Eliom_content.Html.elt -> string -> unit
              val top : 'Eliom_content.Html.elt -> string -> unit
              val topPx : 'Eliom_content.Html.elt -> int -> unit
              val verticalAlign : 'Eliom_content.Html.elt -> string -> unit
              val visibility : 'Eliom_content.Html.elt -> string -> unit
              val whiteSpace : 'Eliom_content.Html.elt -> string -> unit
              val width : 'Eliom_content.Html.elt -> string -> unit
              val widthPx : 'Eliom_content.Html.elt -> int -> unit
              val wordSpacing : 'Eliom_content.Html.elt -> string -> unit
              val zIndex : 'Eliom_content.Html.elt -> string -> unit
            end
        end
      module Of_dom :
        sig
          type 'a elt = 'a elt
          val of_element :
            Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t -> 'a elt
          val of_html :
            Js_of_ocaml.Dom_html.htmlElement Js_of_ocaml.Js.t ->
            [> Html_types.html ] elt
          val of_head :
            Js_of_ocaml.Dom_html.headElement Js_of_ocaml.Js.t ->
            [> Html_types.head ] elt
          val of_link :
            Js_of_ocaml.Dom_html.linkElement Js_of_ocaml.Js.t ->
            [> Html_types.link ] elt
          val of_title :
            Js_of_ocaml.Dom_html.titleElement Js_of_ocaml.Js.t ->
            [> Html_types.title ] elt
          val of_meta :
            Js_of_ocaml.Dom_html.metaElement Js_of_ocaml.Js.t ->
            [> Html_types.meta ] elt
          val of_base :
            Js_of_ocaml.Dom_html.baseElement Js_of_ocaml.Js.t ->
            [> Html_types.base ] elt
          val of_style :
            Js_of_ocaml.Dom_html.styleElement Js_of_ocaml.Js.t ->
            [> Html_types.style ] elt
          val of_body :
            Js_of_ocaml.Dom_html.bodyElement Js_of_ocaml.Js.t ->
            [> Html_types.body ] elt
          val of_form :
            Js_of_ocaml.Dom_html.formElement Js_of_ocaml.Js.t ->
            [> Html_types.form ] elt
          val of_optGroup :
            Js_of_ocaml.Dom_html.optGroupElement Js_of_ocaml.Js.t ->
            [> Html_types.optgroup ] elt
          val of_option :
            Js_of_ocaml.Dom_html.optionElement Js_of_ocaml.Js.t ->
            [> Html_types.selectoption ] elt
          val of_select :
            Js_of_ocaml.Dom_html.selectElement Js_of_ocaml.Js.t ->
            [> Html_types.select ] elt
          val of_input :
            Js_of_ocaml.Dom_html.inputElement Js_of_ocaml.Js.t ->
            [> Html_types.input ] elt
          val of_textArea :
            Js_of_ocaml.Dom_html.textAreaElement Js_of_ocaml.Js.t ->
            [> Html_types.textarea ] elt
          val of_button :
            Js_of_ocaml.Dom_html.buttonElement Js_of_ocaml.Js.t ->
            [> Html_types.button ] elt
          val of_label :
            Js_of_ocaml.Dom_html.labelElement Js_of_ocaml.Js.t ->
            [> Html_types.label ] elt
          val of_fieldSet :
            Js_of_ocaml.Dom_html.fieldSetElement Js_of_ocaml.Js.t ->
            [> Html_types.fieldset ] elt
          val of_legend :
            Js_of_ocaml.Dom_html.legendElement Js_of_ocaml.Js.t ->
            [> Html_types.legend ] elt
          val of_uList :
            Js_of_ocaml.Dom_html.uListElement Js_of_ocaml.Js.t ->
            [> Html_types.ul ] elt
          val of_oList :
            Js_of_ocaml.Dom_html.oListElement Js_of_ocaml.Js.t ->
            [> Html_types.ol ] elt
          val of_dList :
            Js_of_ocaml.Dom_html.dListElement Js_of_ocaml.Js.t ->
            [> Html_types.dl ] elt
          val of_li :
            Js_of_ocaml.Dom_html.liElement Js_of_ocaml.Js.t ->
            [> Html_types.li ] elt
          val of_div :
            Js_of_ocaml.Dom_html.divElement Js_of_ocaml.Js.t ->
            [> Html_types.div ] elt
          val of_paragraph :
            Js_of_ocaml.Dom_html.paragraphElement Js_of_ocaml.Js.t ->
            [> Html_types.p ] elt
          val of_heading :
            Js_of_ocaml.Dom_html.headingElement Js_of_ocaml.Js.t ->
            [> Html_types.heading ] elt
          val of_quote :
            Js_of_ocaml.Dom_html.quoteElement Js_of_ocaml.Js.t ->
            [> Html_types.blockquote ] elt
          val of_pre :
            Js_of_ocaml.Dom_html.preElement Js_of_ocaml.Js.t ->
            [> Html_types.pre ] elt
          val of_br :
            Js_of_ocaml.Dom_html.brElement Js_of_ocaml.Js.t ->
            [> Html_types.br ] elt
          val of_hr :
            Js_of_ocaml.Dom_html.hrElement Js_of_ocaml.Js.t ->
            [> Html_types.hr ] elt
          val of_mod :
            Js_of_ocaml.Dom_html.modElement Js_of_ocaml.Js.t ->
            [> `Del of '| `Ins of 'a ] elt
          val of_anchor :
            Js_of_ocaml.Dom_html.anchorElement Js_of_ocaml.Js.t ->
            [> 'Html_types.a ] elt
          val of_image :
            Js_of_ocaml.Dom_html.imageElement Js_of_ocaml.Js.t ->
            [> Html_types.img ] elt
          val of_object :
            Js_of_ocaml.Dom_html.objectElement Js_of_ocaml.Js.t ->
            [> 'Html_types.object_ ] elt
          val of_param :
            Js_of_ocaml.Dom_html.paramElement Js_of_ocaml.Js.t ->
            [> Html_types.param ] elt
          val of_area :
            Js_of_ocaml.Dom_html.areaElement Js_of_ocaml.Js.t ->
            [> Html_types.area ] elt
          val of_map :
            Js_of_ocaml.Dom_html.mapElement Js_of_ocaml.Js.t ->
            [> 'Html_types.map ] elt
          val of_script :
            Js_of_ocaml.Dom_html.scriptElement Js_of_ocaml.Js.t ->
            [> Html_types.script ] elt
          val of_embed :
            Js_of_ocaml.Dom_html.embedElement Js_of_ocaml.Js.t ->
            [> Html_types.embed ] elt
          val of_tableCell :
            Js_of_ocaml.Dom_html.tableCellElement Js_of_ocaml.Js.t ->
            [> `Td | `Th ] elt
          val of_tableRow :
            Js_of_ocaml.Dom_html.tableRowElement Js_of_ocaml.Js.t ->
            [> Html_types.tr ] elt
          val of_tableCol :
            Js_of_ocaml.Dom_html.tableColElement Js_of_ocaml.Js.t ->
            [> Html_types.col ] elt
          val of_tableSection :
            Js_of_ocaml.Dom_html.tableSectionElement Js_of_ocaml.Js.t ->
            [> `Tbody | `Tfoot | `Thead ] elt
          val of_tableCaption :
            Js_of_ocaml.Dom_html.tableCaptionElement Js_of_ocaml.Js.t ->
            [> Html_types.caption ] elt
          val of_table :
            Js_of_ocaml.Dom_html.tableElement Js_of_ocaml.Js.t ->
            [> Html_types.table ] elt
          val of_canvas :
            Js_of_ocaml.Dom_html.canvasElement Js_of_ocaml.Js.t ->
            [> 'Html_types.canvas ] elt
          val of_iFrame :
            Js_of_ocaml.Dom_html.iFrameElement Js_of_ocaml.Js.t ->
            [> Html_types.iframe ] elt
          val of_audio :
            Js_of_ocaml.Dom_html.audioElement Js_of_ocaml.Js.t ->
            [> 'Html_types.audio ] elt
          val of_video :
            Js_of_ocaml.Dom_html.videoElement Js_of_ocaml.Js.t ->
            [> 'Html_types.video ] elt
        end
    end
  val force_link : unit
  val set_client_fun :
    ?app:string ->
    service:('a, 'b, 'c, 'd, 'e, 'f, 'g, [< `WithSuffix | `WithoutSuffix ],
             'h, 'i, 'j)
            Eliom_service.t ->
    ('-> '-> Eliom_service.result Lwt.t) -> unit
  val set_form_error_handler : (unit -> bool Lwt.t) -> unit
end