You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ah...@apache.org on 2018/03/14 22:36:47 UTC

[royale-compiler] branch develop updated: make sure @font-face gets passed through

This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git


The following commit(s) were added to refs/heads/develop by this push:
     new 9f24373  make sure @font-face gets passed through
9f24373 is described below

commit 9f24373ac542f8d4c0123452c4e09b449fe572a6
Author: Alex Harui <ah...@apache.org>
AuthorDate: Wed Mar 14 15:36:30 2018 -0700

    make sure @font-face gets passed through
---
 compiler-jx/src/test/resources/royale/files/CSSTestSource.css     | 5 +++++
 .../src/test/resources/royale/files/CSSTestSource_result.css      | 8 ++++++++
 2 files changed, 13 insertions(+)

diff --git a/compiler-jx/src/test/resources/royale/files/CSSTestSource.css b/compiler-jx/src/test/resources/royale/files/CSSTestSource.css
index 068ea30..e4fa9a0 100755
--- a/compiler-jx/src/test/resources/royale/files/CSSTestSource.css
+++ b/compiler-jx/src/test/resources/royale/files/CSSTestSource.css
@@ -22,6 +22,11 @@
 @namespace basic "library://ns.apache.org/royale/basic";
 @namespace "http://www.w3.org/1999/xhtml";
 
+@font-face {
+    font-family: error;
+    src: url(helvetica_bold.woff);
+}
+
 /*
 //----------------------------
 // Named styles
diff --git a/compiler-jx/src/test/resources/royale/files/CSSTestSource_result.css b/compiler-jx/src/test/resources/royale/files/CSSTestSource_result.css
index e306d1d..0d659df 100755
--- a/compiler-jx/src/test/resources/royale/files/CSSTestSource_result.css
+++ b/compiler-jx/src/test/resources/royale/files/CSSTestSource_result.css
@@ -19,6 +19,14 @@
 ////////////////////////////////////////////////////////////////////////////////
 */
 /* Generated by Apache Royale Compiler */
+@font-face {
+    font-family: error;
+    font-style: normal;
+    font-weight: normal;
+    src: url(helvetica_bold.woff);
+}
+
+
 .glass {
         border-color: #767473;
         highlight-alphas: .07, .45;

-- 
To stop receiving notification emails like this one, please contact
aharui@apache.org.