Bug 118628

Summary: Move the Length parsing functions to using Vector<Length>
Product: WebKit Reporter: Ryosuke Niwa <rniwa>
Component: DOMAssignee: Nobody <webkit-unassigned>
Status: NEW ---    
Severity: Normal CC: benjamin, kling, koivisto
Priority: P2 Keywords: BlinkMergeCandidate
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   

Description Ryosuke Niwa 2013-07-12 17:00:21 PDT
Merge https://chromium.googlesource.com/chromium/blink/+/bbbb5d67d04ba1f8497258846c2cdaf660e91b58

The use of OwnArrayPtr<Length> was unneeded and there was no good
reason for these functions not to use a Vector. The big upside is to
remove the manual length tracking and getting the ASSERT from the
Vector for OOB accesses.