1. 28 Apr, 2016 3 commits
  2. 27 Apr, 2016 11 commits
  3. 26 Apr, 2016 7 commits
  4. 25 Apr, 2016 12 commits
  5. 24 Apr, 2016 2 commits
  6. 23 Apr, 2016 3 commits
  7. 22 Apr, 2016 2 commits
    • Adam Barth's avatar
      Improve the docs for Text and RichText (#3507) · 8ac9cc45
      Adam Barth authored
      Fixes #3503
      8ac9cc45
    • Adam Barth's avatar
      A blinking cursor should push only one frame (#3445) (#3506) · a5e794ca
      Adam Barth authored
      Prior to this patch, we were pushing two frames each time the cursor blinked.
      In turning the cursor on or off, the markNeedsPaint call was triggering another
      frame to be scheduled because we cleared a bit in the scheduler at the
      beginning of the frame instead of at the end of the frame.
      
      To implement scheduling correctly, we actually need two bits: one for
      ensureVisualUpdate, which just promises to get to the end of the pipeline soon,
      and scheduleFrame, which promises to get to the beginning of the pipeline soon.
      
      (Reland)
      a5e794ca