Bug 72700 - [CSS Shaders] The mesh attributes have no "attached" identifier in the computed style
Summary: [CSS Shaders] The mesh attributes have no "attached" identifier in the comput...
Status: RESOLVED INVALID
Alias: None
Product: WebKit
Classification: Unclassified
Component: CSS (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P4 Normal
Assignee: Michelangelo De Simone
URL: https://dvcs.w3.org/hg/FXTF/raw-file/...
Keywords:
Depends on:
Blocks: 71392 71446
  Show dependency treegraph
 
Reported: 2011-11-18 01:04 PST by Alexandru Chiculita
Modified: 2013-04-22 16:13 PDT (History)
3 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Alexandru Chiculita 2011-11-18 01:04:49 PST
There's no "attached" identifier in the specification of the shaders. In order to be verbose when calculating the computed style we need an "attached" identifier. Verbose mode means that even if the default mode is "attached", we will have an "attached" identifier in the output of the computed style.

Adding this bug to make sure an "attached" mode is added to the spec, OR remove the comment in the code saying that the computed style will not contain any "attached" identifier.

example:
-webkit-filter: custom(url(vertex), 10) 
should compute to 
-webkit-filter: custom(url(vertex) none, 10 10 attached)

Currently, we cannot compute to the string with "attached", because accordingly to the spec it is not a valid syntax.
Comment 1 Dirk Schulze 2012-10-28 03:42:23 PDT
I am a bit confused. Do you mix up computed values and computed style in the description? The computed value should have attached. The computed style shouldn't, if you didn't specify it. Even it the computed value has it :P
Comment 2 Dirk Schulze 2013-04-22 16:13:45 PDT
Spoke with achicu on IRC. This part of CSSComputedStyleDeclaration is deprecated now and will be removed soon after finishing the new syntax for custom(). Closing this bug as invalid.