d55c2d7a2c
* many files had no license comments at all * some files had license comments suggesting that they weren't open source (like a terse "all rights reserved") when they actually are open source. * all our files are licensed under apache and should be marked as such
31 lines
1.3 KiB
Bash
31 lines
1.3 KiB
Bash
#!/bin/bash
|
|
#
|
|
# Copyright 2016 Google Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
if ! "$SKIP_EXTERNAL_RESOURCE_TESTS"; then
|
|
start_test inline_google_font_css before move_to_head and move_above_scripts
|
|
URL="$TEST_ROOT/move_font_css_to_head.html"
|
|
URL+="?PageSpeedFilters=inline_google_font_css,"
|
|
URL+="move_css_to_head,move_css_above_scripts"
|
|
# Make sure the font CSS link tag is eliminated.
|
|
fetch_until -save $URL 'grep -c link' 0
|
|
# Check that we added fonts to the page.
|
|
check [ $(fgrep -c '@font-face' $FETCH_FILE) -gt 0 ]
|
|
# Make sure last style line is before first script line.
|
|
last_style=$(fgrep -n '<style>' $FETCH_FILE | tail -1 | grep -o '^[^:]*')
|
|
first_script=$(\
|
|
fgrep -n '<script>' $FETCH_FILE | tail -1 | grep -o '^[^:]*')
|
|
check [ "$last_style" -lt "$first_script" ]
|
|
fi
|