From a258a14a7f4db32af35cc147ab86cc7259290e35 Mon Sep 17 00:00:00 2001 From: Steve Orvell Date: Mon, 24 Feb 2014 07:23:10 -0800 Subject: [PATCH] Remove template css url fix. This is now addressed within TemplateBinding. This fixes an exception that was due to the fact the 2 fixes were not compatible with each other. --- src/dom.js | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/dom.js b/src/dom.js index fb38d2c..e0fe19d 100644 --- a/src/dom.js +++ b/src/dom.js @@ -93,17 +93,6 @@ })(); } - // TODO(sorvell): workaround for bug: - // https://code.google.com/p/chromium/issues/detail?id=229142 - // remove when this bug is addressed - // give main document templates a base that allows them to fetch eagerly - // resolved paths relative to the main document - var template = document.createElement('template'); - var base = document.createElement('base'); - base.href = document.baseURI; - template.content.ownerDocument.appendChild(base); - - // utility function createDOM(inTagOrNode, inHTML, inAttrs) {