[Bug 22617] New: NamedFlowCollection item and namedItem should return null

https://www.w3.org/Bugs/Public/show_bug.cgi?id=22617

            Bug ID: 22617
           Summary: NamedFlowCollection item and namedItem should return
                    null
    Classification: Unclassified
           Product: CSS
           Version: unspecified
          Hardware: All
                OS: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Regions
          Assignee: vhardy@adobe.com
          Reporter: arv@chromium.org
        QA Contact: public-css-bugzilla@w3.org
                CC: eoconnor@apple.com

For consistency with all other dom collections.

Maybe you were confused by the following asserts which passes for all dom
collections?

assert(collection.item(42) === null);
assert(collection.namedItem('foobar') === null);
assert(collection[42] === undefined);
assert(collection['foobar'] === undefined);

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Tuesday, 9 July 2013 15:45:48 UTC