1. 06 Apr, 2015 1 commit
    • Ojan Vafai's avatar
      Remove all uses of display:block and display:inline-block. · a03a911e
      Ojan Vafai authored
      -Make display:flex, flex-direction: column, flex-shrink: 1 the default.
      -Simplify StyleAdjuster::adjustStyleForAlignment to remove special cases we
      won't need as we make flex the default and remove absolute positioning.
      -Fix a bug this exposed in column flexboxes where we'd apply the wrong edge
      of border/padding/margin.
      -For now leave the default of align-items:stretch. The main change here is
      that iframe/img will do width:auto the same as blocks (i.e. the width of
      the parent). I think this is a good change, but we'll have to see how it feels
      in practice.
      
      R=eseidel@chromium.org
      
      Review URL: https://codereview.chromium.org/1061163002
      a03a911e
  2. 01 Apr, 2015 1 commit
  3. 27 Mar, 2015 1 commit
  4. 26 Mar, 2015 5 commits
  5. 25 Mar, 2015 4 commits
  6. 24 Mar, 2015 3 commits
  7. 23 Mar, 2015 4 commits
  8. 20 Mar, 2015 6 commits
  9. 16 Mar, 2015 1 commit
  10. 19 Mar, 2015 3 commits
    • Adam Barth's avatar
      Add a basic custom painting facility to Sky · 11155a2b
      Adam Barth authored
      This CL adds just enough custom painting to Sky to make
      sky/examples/painting/circle.sky draw a circle. Over time, we should be able to
      elaborate this system into something interesting and to make it actually work
      in a reasonable way.
      
      R=ojan@chromium.org
      
      Review URL: https://codereview.chromium.org/1017593005
      11155a2b
    • Adam Barth's avatar
      Improve Material ink effects · 9d9d2d52
      Adam Barth authored
      1) Factors InkWell out of Material so that components can use an ink well
         without needing the shadow/level machinery.
      
      2) Makes the ink effect move at a different velocity once the tap has actually
         occurred, converging with the spec. We don't have the right speeds yet, but
         at least we're approaching the right shape.
      
      3) To support (2), added a primaryPointer attribute to GestureEvents to let
         authors coorelate gesturetapdown events with later gesturetap events.
      
      4) To support (2), modernized SplashAnimation to used AnimatedValue and friends.
      
      5) Added more constants to view-configuration.dart that match Android.
      
      I've also removed the cancelling of the ink effect on scroll. The proper way to
      do that is to notice that someone in the event chain is listening for
      scrollstart and delay the beginning of the ink effect for some period of time.
      
      R=eseidel@chromium.org
      
      Review URL: https://codereview.chromium.org/1019023003
      9d9d2d52
    • Viet-Trung Luu's avatar
      Make the terminal demo able (to try) to connect to anything. · 818df5f4
      Viet-Trung Luu authored
      (Using the query string from the URL.)
      
      R=erg@chromium.org
      
      Review URL: https://codereview.chromium.org/1019323002
      818df5f4
  11. 15 Mar, 2015 1 commit
    • Rafael Weinstein's avatar
      Change how events are handled in Effen · bd7603bd
      Rafael Weinstein authored
      This patch removes the mutable API to event handling (Nodes no longer have a events object with which to add listeners).
      
      Instead, a new (non-Render) Node is introduced: EventTarget. This node represents a location in the Effen tree which can handle events as they bubble.
      
      Note that this also changes the implementation to use event delegation (one set of listeners at the sky.document level) rather than direct listeners on leaf nodes.
      
      R=abarth@chromium.org
      
      Review URL: https://codereview.chromium.org/1019633004
      bd7603bd
  12. 18 Mar, 2015 5 commits
  13. 17 Mar, 2015 5 commits