From 022835bab26de9fe0ad69a3bfd71d9315e99e8d1 Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Thu, 8 Jun 2017 12:43:37 +0300 Subject: [PATCH] ci: update Chromium to 464641 (Chrome v59) --- packages/compiler/test/schema/schema_extractor.ts | 3 ++- scripts/ci/env.sh | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/compiler/test/schema/schema_extractor.ts b/packages/compiler/test/schema/schema_extractor.ts index fe9fc431db..adbd61aeda 100644 --- a/packages/compiler/test/schema/schema_extractor.ts +++ b/packages/compiler/test/schema/schema_extractor.ts @@ -28,6 +28,7 @@ const ALL_HTML_TAGS = // Elements missing from Chrome (HtmlUnknownElement), to be manually added const MISSING_FROM_CHROME: {[el: string]: string[]} = { 'data^[HTMLElement]': ['value'], + 'keygen^[HTMLElement]': ['!autofocus', 'challenge', '!disabled', 'form', 'keytype', 'name'], // TODO(vicb): Figure out why Chrome and WhatWG do not agree on the props // 'menu^[HTMLElement]': ['type', 'label'], 'menuitem^[HTMLElement]': @@ -268,4 +269,4 @@ const _TYPE_MNEMONICS: {[type: string]: string} = { 'number': '#', 'boolean': '!', 'object': '%', -}; \ No newline at end of file +}; diff --git a/scripts/ci/env.sh b/scripts/ci/env.sh index cb42cd04b4..600d275cff 100755 --- a/scripts/ci/env.sh +++ b/scripts/ci/env.sh @@ -37,7 +37,7 @@ fi setEnvVar NODE_VERSION 6.9.5 setEnvVar NPM_VERSION 3.10.7 # do not upgrade to >3.10.8 unless https://github.com/npm/npm/issues/14042 is resolved setEnvVar YARN_VERSION 0.21.3 -setEnvVar CHROMIUM_VERSION 433059 # Chrome 53 linux stable, see https://www.chromium.org/developers/calendar +setEnvVar CHROMIUM_VERSION 464641 # Chrome 59 linux stable, see https://www.chromium.org/developers/calendar setEnvVar SAUCE_CONNECT_VERSION 4.3.11 setEnvVar PROJECT_ROOT $(cd ${thisDir}/../..; pwd)