1. 10 Jan, 2020 1 commit
  2. 09 Jan, 2020 1 commit
  3. 08 Jan, 2020 1 commit
  4. 07 Jan, 2020 1 commit
  5. 03 Jan, 2020 1 commit
  6. 27 Dec, 2019 3 commits
  7. 23 Dec, 2019 1 commit
  8. 20 Dec, 2019 1 commit
  9. 19 Dec, 2019 1 commit
  10. 18 Dec, 2019 1 commit
    • Angjie Li's avatar
      Flutter Web Driver Support (#45951) · 1ef0eadb
      Angjie Li authored
      * Support Flutter Driver test for Flutter Web application.
      
      * Support Flutter Driver test for Flutter Web application.
      
      * Fix documentation issues.
      
      * Support Flutter Driver test for Flutter Web application.
      
      * Fix documentation.
      
      * Remove unused file from dartdoc check.
      
      * Sync to date.
      
      * Revert change to dartdoc.
      
      * Address comments.
      
      * Apply suggestions from code review
      Co-Authored-By: 's avatarJonah Williams <jonahwilliams@google.com>
      
      * Update copyrights.
      
      * Update allowed list for browsers.
      
      * Verify command line arguments for Drive command is correctly parsed.
      
      * Make waitUntilFirstFrameRasterized throw unimplementedError for Flutter Web Driver.
      
      * Add comment for why sync WebDriver is used.
      
      * Update documentations.
      
      * Add more unit tests and update documentation.
      
      * Configure test.dart so that web_extension_test will be executed with --platform=chrome.
      
      * Revert unnecessary changes.
      
      * Add new file path for Windows to blacklist.
      
      * Reconstruct the structure of flutter_driver/test/src folder to remove filtering logic in dev/bots/test.dart/
      
      * Fix path to web_extension_test.dart.
      
      * Add instructions for how to use WebFlutterDriver.
      
      * Update getLayerTree to use sendCommand instead of _sendCommand.
      
      * Update pubspec files.
      1ef0eadb
  11. 16 Dec, 2019 1 commit
  12. 04 Dec, 2019 3 commits
  13. 03 Dec, 2019 1 commit
  14. 28 Nov, 2019 1 commit
    • Ian Hickson's avatar
      Make all of the driver interface public. (#45733) · f2445002
      Ian Hickson authored
      We keep finding things that we've accidentally not made public. The
      pattern we use elsewhere in the platform is to just export everything,
      to avoid encouraging people from importing `src/` files directly.
      f2445002
  15. 27 Nov, 2019 1 commit
    • Ian Hickson's avatar
      License update (#45373) · 449f4a66
      Ian Hickson authored
      * Update project.pbxproj files to say Flutter rather than Chromium
      
      Also, the templates now have an empty organization so that we don't cause people to give their apps a Flutter copyright.
      
      * Update the copyright notice checker to require a standard notice on all files
      
      * Update copyrights on Dart files. (This was a mechanical commit.)
      
      * Fix weird license headers on Dart files that deviate from our conventions; relicense Shrine.
      
      Some were already marked "The Flutter Authors", not clear why. Their
      dates have been normalized. Some were missing the blank line after the
      license. Some were randomly different in trivial ways for no apparent
      reason (e.g. missing the trailing period).
      
      * Clean up the copyrights in non-Dart files. (Manual edits.)
      
      Also, make sure templates don't have copyrights.
      
      * Fix some more ORGANIZATIONNAMEs
      449f4a66
  16. 22 Nov, 2019 1 commit
  17. 16 Nov, 2019 1 commit
  18. 09 Oct, 2019 2 commits
    • Dwayne Slater's avatar
    • Greg Spencer's avatar
      Enables setting of semantics focused and focusable attributes within Focus widgets. (#41814) · 89d6c8d9
      Greg Spencer authored
      This adds a Semantics node to the Focus and FocusScope widgets, setting the focused and focusable attributes so that the accessibility subsystem can be told when a control has the input focus.
      
      Includes an engine roll to flutter/engine@77252d2, and the following 8 engine changes:
      
      flutter/engine@77252d2 Greg Spencer Add missing focusable testing info (flutter/engine#13013)
      flutter/engine@0e42a29 skia-flutter-.. Roll src/third_party/skia 54548626a977..e27a503a0a21 (1 commits) (flutter/engine#13024)
      flutter/engine@6b56ed7 gaaclarke Refactor: FlutterDartProject (flutter/engine#13006)
      flutter/engine@393480c skia-flutter-.. Roll src/third_party/skia 77dde599c98a..54548626a977 (1 commits) (flutter/engine#13023)
      flutter/engine@080b89d skia-flutter-.. Roll src/third_party/skia 2b1a25a4d324..77dde599c98a (1 commits) (flutter/engine#13021)
      flutter/engine@90b0f30 Ben Konyi Roll src/third_party/dart f4a72bfc64..bb04f145b2 (18 commits) (flutter/engine#13020)
      flutter/engine@049fb89 skia-flutter-.. Roll fuchsia/sdk/core/linux-amd64 from q_uYX... to cknsi... (flutter/engine#13019)
      flutter/engine@6925b2a skia-flutter-.. Roll fuchsia/sdk/core/mac-amd64 from wuAtw... to u0JpE... (flutter/engine#13018)
      
      Related Issues
      Addresses #40101
      
      Landing on red in order to fix the build: it's red because of the needed engine roll.
      89d6c8d9
  19. 18 Sep, 2019 2 commits
  20. 17 Sep, 2019 1 commit
  21. 27 Aug, 2019 1 commit
  22. 21 Aug, 2019 1 commit
  23. 19 Aug, 2019 2 commits
  24. 06 Aug, 2019 1 commit
  25. 31 Jul, 2019 1 commit
  26. 26 Jul, 2019 2 commits
  27. 19 Jul, 2019 2 commits
  28. 18 Jul, 2019 1 commit
  29. 16 Jul, 2019 1 commit
    • liyuqian's avatar
      Fix flaky peer connection (#36089) · 180aa0c0
      liyuqian authored
      Fixes https://github.com/flutter/flutter/issues/36091.
      
      Previously, a sendRequest will be sent even if the peer is closed during
      a driver test. That will cause a time out without any error information.
      Such issue is unreproducible on my Mac Book Pro, but 100% reproducible
      on our new Mac mini (2018).
      
      The closing issue is tracked in https://github.com/flutter/flutter/issues/36268
      
      Additional to this fix, we should also patch the jason_rpc_2 so the peer
      will throw exception if sendRequest is attempted while the connection is
      closed.
      
      **Test**:
      tiles_scroll_perf_iphonexs__timeline_summary failed without this patch.
      It will pass after this patch.
      
      I'm not sure how to add a unit test for this. Please let me know if you have
      some ideas.
      
      This patch will generate the following warning log on the new Mac Mini
      ```
      flutter: Observatory listening on http://127.0.0.1:50192/cZPDF4sW7MM=/  
      Installing and launching...                                        10.2s
      00:00 +0: scrolling performance test (setUpAll)
      [info ] FlutterDriver: Connecting to Flutter application at http://127.0.0.1:1069/cZPDF4sW7MM=/
      [trace] FlutterDriver: Isolate found with number: 3684677742843303
      [trace] FlutterDriver: Isolate is paused at start.
      [trace] FlutterDriver: Attempting to resume isolate
      [trace] FlutterDriver: Waiting for service extension
      [info ] FlutterDriver: Connected to Flutter application.
      00:00 +0: scrolling performance test complex_layout_scroll_perf
      [warning] FlutterDriver: Instance of '_WebSocketImpl' is closed with an unexpected code 1005
      [warning] FlutterDriver: Peer connection is closed! Trying to restore the connection...
      00:10 +1: scrolling performance test tiles_scroll_perf
      [warning] FlutterDriver: Instance of '_WebSocketImpl' is closed with an unexpected code 1005
      [warning] FlutterDriver: Peer connection is closed! Trying to restore the connection...
      00:20 +2: scrolling performance test (tearDownAll)
      00:20 +2: All tests passed!
      Stopping application instance.
      ```
      180aa0c0
  30. 02 Jul, 2019 1 commit
  31. 19 Jun, 2019 1 commit