Bug 68102 - getComputedStyle does not work on registered custom elements
Summary: getComputedStyle does not work on registered custom elements
Status: RESOLVED WONTFIX
Alias: None
Product: WebKit
Classification: Unclassified
Component: DOM (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks: 72352 59803
  Show dependency treegraph
 
Reported: 2011-09-14 12:12 PDT by Erik Arvidsson
Modified: 2011-11-20 18:29 PST (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Erik Arvidsson 2011-09-14 12:12:55 PDT
This depends on some of the component model patches.

function Foo() {
  HTMLElement.call(this);
}
Foo.prototype = Object.create(HTMLElement.prototype);
HTMLElement.register('x-foo', Foo);

getComputedStyle(new Foo)  // null, expected CSSStyleDeclaration
Comment 1 Dominic Cooney 2011-11-20 18:29:45 PST
The prototype that exhibited this bug is an evolutionary dead-end, so ditching this bug.