Bug 76577 - Crash declaring different line-grids on nested elements
Summary: Crash declaring different line-grids on nested elements
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: CSS (show other bugs)
Version: 528+ (Nightly build)
Hardware: All All
: P1 Normal
Assignee: Dave Hyatt
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-01-18 14:58 PST by Alan Stearns
Modified: 2012-01-19 09:45 PST (History)
0 users

See Also:


Attachments
Patch (3.15 KB, patch)
2012-01-19 09:43 PST, Dave Hyatt
mitz: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Alan Stearns 2012-01-18 14:58:26 PST
Loading this causes a crash. If grid1 and grid2 are not nested, there is no crash.

<style>
  .grid1 {
    -webkit-line-grid: grid1;
  }
  .grid2 {
    -webkit-line-grid: grid2;
  }
</style>
<body>
  <div class=grid1>
    <div class=grid2>
    </div>
  </div>
</body>
Comment 1 Dave Hyatt 2012-01-19 09:43:29 PST
Created attachment 123142 [details]
Patch
Comment 2 Dave Hyatt 2012-01-19 09:45:32 PST
Fixed in r105420.