Re: sXBL and CSS

Rodrigo Garcia:
> Since there is no shadow content in the sXBL definition, restriction 3.11
> does not apply. Both styles will be then loaded and, by the cascade rules
> for resolving conflicts, the one which is loaded last is the one that
> "wins". Since the style that is loaded last is the sXBL instantiated one, my
> guess is that both circles will be red.

Oops, actually I meant to give this document:

  <svg ...>
    <xbl:xbl>
      <xbl:definition element="ex:styles">
        <xbl:template>
          <style type="text/css">
            circle { fill: red; }
          </style>
	</xbl:template>
      </xbl:definition>
    </xbl:xbl>

    <circle cx="100" cy="100" r="50"/>

    <style type="text/css">
      circle { fill: blue; }
    </style>

    <ex:styles/>

    <circle cx="100" cy="300" r="50"/>
  </svg>

-- 
Cameron McCormack
|  Web: http://mcc.id.au/
|  ICQ: 26955922

Received on Tuesday, 18 January 2005 22:56:24 UTC