forked from w3c/csswg-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpub-css-style-attr.pl
executable file
·76 lines (49 loc) · 2.31 KB
/
pub-css-style-attr.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/usr/bin/perl
# prep-css-style-attr
# Script for cleaning up the repository prior to building the CSS Style Attributes test suite.
use File::Path;
rmtree('dist/css-style-attr');
# approved/ directory is ready already and built automatically
@dirs = (); # extra (unreviewed test) directories
# Prep by Contributor:
###############################################################################
# Adobe
###############################################################################
# Apple - No CSS2.1 tests
###############################################################################
# Tim Boland - Not used
###############################################################################
# Boris Zbarsky
###############################################################################
# John Daggett
###############################################################################
# David Baron
###############################################################################
# Mozilla
###############################################################################
# Eira Monstad
###############################################################################
# Gabriele Romanato
###############################################################################
# Gérard Talbot
###############################################################################
# Ian Hickson
###############################################################################
# i18n WG (Richard Ishida)
###############################################################################
# James Hopkins
###############################################################################
# Hewlett-Packard
###############################################################################
# fantasai
#push @dirs, 'contributors/fantasai/submitted/css-style-attr';
###############################################################################
# CSSWG Issues
###############################################################################
# Microsoft
###############################################################################
# Opera
###############################################################################
$dirlist = join ' ', @dirs;
print `python tools/build-css-style-attr.py $dirlist 2>&1`;
print `find dist/css-style-attr -type f -exec chmod 644 {} \\;`;