Chrome 64



  • Resolved issue 3214: ChromeDriver78: Sendkeys resets text selection with contenteditable
  • Resolved issue 3376: Remove LaunchApp command from ChromeDriver
  • Resolved issue 3432: Sometimes NavigationTracker fails to detect when the page has finished loading
  • Resolved issue 3481: New Print endpoint according to w3c spec
  • Resolved issue 3488: driver.get doesn't throw error when proxy is wrong configured
  • Resolved issue 3502: Use document.hasFocus() to check if element is focused
  • Resolved issue 3515: selenium.common.exceptions.WebDriverException: Message: unknown error: bad inspector message
  • Support for ResizeObservers, will notify you when an element's content rectangle has changed its size.
  • Modules can now access to host specific metadata with import.meta.
  • The pop-up blocker gets strong.
  • window.alert() no longer changes focus.
  1. ลาก Chrome ไปยังโฟลเดอร์ 'แอปพลิเคชัน'. 64-bit Ubuntu 14.04 ขึ้นไป Debian 8 ขึ้นไป openSUSE 13.3 ขึ้นไปหรือ Fedora Linux 24 ขึ้นไป.
  2. Download latest version of Google Chrome (64-bit) for Windows. Safe and Virus Free.
  3. I'm using a 32-bit laptop to download a 64-bit version of Chrome to apply to a group of (Windows) servers that aren't connected to the internet. I'm constantly having the 32-bit stub pushed on me when I want the full 64-bit version to install in an 'offline' state.
  4. For Windows 10/8.1/8/7 32-bit. For Windows 10/8.1/8/7 64-bit. This computer will no longer receive Google Chrome updates because Windows XP and Windows Vista are no longer supported.

And there's plenty more!

Google Chrome is a fast, free web browser. Before you download, you can check if Chrome supports your operating system and that you have all the other system requirements. Google Chrome Help. 64-bit Ubuntu 14.04+, Debian 8+, openSUSE 13.3+ or Fedora Linux 24+.

I'm Pete LePage. Let's dive in and see what's new for developers in Chrome 64!

Want the full list of changes? Check out the Chromium source repository change list.

ResizeObserver#

Tracking when an element's size changes can be a bit of a pain. Most likely, you'll attach a listener to the document's resize event, then call getBoundingClientRect or getComputedStyle. But, both of those can cause layout thrashing.

And what if the browser window didn't change size, but a new element was added to the document? Or you added display: none to an element? Both of those can change the size of other elements within the page.

ResizeObserver notifies you whenever an element's size changes, and provides the new height and width of the element, reducing the risk of layout thrashing.

Like other Observers, using it is pretty simple, create a ResizeObserver object and pass a callback to the constructor. The callback will be given an array of ResizeOberverEntries–one entry per observed element–which contain the new dimensions for the element.

Check out ResizeObserver: It's like document.onresize for Elements for more details and real world examples.

Chrome Download Free Windows 10

Improved Pop-up Blocker #

Chrome

I hate tab-unders. You know them, it's when a page opens a pop-up to some destination AND navigates the page. Usually one of them is an ad or something that you didn't want.

Starting in Chrome 64, these type of navigations will be blocked, and Chrome will show some native UI to the user - allowing them to follow the redirect if they want.

import.meta#

When writing JavaScript modules, you often want access to host-specific metadata about the current module. Chrome 64 now supports the import.meta property within modules and exposes the URL for the module as import.meta.url.

This is really helpful when you want to resolve resources relative to the module file as opposed to the current HTML document.

And more! #

ChromeChrome 64

These are just a few of the changes in Chrome 64 for developers, of course, there's plenty more.

  • Chrome now supports named captures and Unicode property escapes in regular expressions.
  • The default preload value for <audio> and <video> elements is now metadata. This brings Chrome in line with other browsers and helps to reduce bandwidth and resource usage by only loading the metadata and not the media itself.
  • You can now use Request.prototype.cache to view the cache mode of a Request and determine whether a request is a reload request.
  • Using the Focus Management API, you can now focus an element without scrolling to it with the preventScroll attribute.
64-bitChrome

window.alert()#

Google Chrome Free Download

Oh, and one more! While this isn't really a 'developer feature', it makes me happy. window.alert() no longer brings a background tab to the foreground! Instead, the alert will be shown when the user switches to back to that tab.

No more random tab switching because something fired a window.alert on me. I'm looking at you old Google Calendar.

Be sure to subscribe to our YouTube channel, and you'll get an email notification whenever we launch a new video.

I'm Pete LePage, and as soon as Chrome 65 is released, I'll be right here to tell you -- what's new in Chrome!

Chrome 64-bit Windows 10

Last updated: Improve article