Changeset 52721 in webkit


Ignore:
Timestamp:
Jan 4, 2010 1:58:58 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-01-04 Alex Milowski <alex@milowski.com>

Reviewed by Eric Seidel.

Added expected outputs for pixel tests that were missing.

  • platform/mac/mathml/presentation/sub-expected.checksum: Added.
  • platform/mac/mathml/presentation/sub-expected.png: Added.
  • platform/mac/mathml/presentation/sup-expected.checksum: Added.
  • platform/mac/mathml/presentation/sup-expected.png: Added.
  • platform/mac/mathml/presentation/tables-expected.checksum: Added.
  • platform/mac/mathml/presentation/tables-expected.png: Added.

2010-01-04 Alex Milowski <alex@milowski.com>

Reviewed by Eric Seidel.

Updated license to match recommended header license.

  • mathml/MathMLElement.cpp:
  • mathml/MathMLElement.h:
  • mathml/MathMLInlineContainerElement.cpp:
  • mathml/MathMLInlineContainerElement.h:
  • mathml/MathMLMathElement.cpp:
  • mathml/MathMLMathElement.h:
Location:
trunk
Files:
6 added
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r52709 r52721  
     12010-01-04  Alex Milowski  <alex@milowski.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Added expected outputs for pixel tests that were missing.
     6
     7        * platform/mac/mathml/presentation/sub-expected.checksum: Added.
     8        * platform/mac/mathml/presentation/sub-expected.png: Added.
     9        * platform/mac/mathml/presentation/sup-expected.checksum: Added.
     10        * platform/mac/mathml/presentation/sup-expected.png: Added.
     11        * platform/mac/mathml/presentation/tables-expected.checksum: Added.
     12        * platform/mac/mathml/presentation/tables-expected.png: Added.
     13
    1142010-01-04  Dirk Schulze  <krit@webkit.org>
    215
  • trunk/WebCore/ChangeLog

    r52709 r52721  
     12010-01-04  Alex Milowski  <alex@milowski.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Updated license to match recommended header license.
     6
     7        * mathml/MathMLElement.cpp:
     8        * mathml/MathMLElement.h:
     9        * mathml/MathMLInlineContainerElement.cpp:
     10        * mathml/MathMLInlineContainerElement.h:
     11        * mathml/MathMLMathElement.cpp:
     12        * mathml/MathMLMathElement.h:
     13
    1142010-01-04  Dirk Schulze  <krit@webkit.org>
    215
  • trunk/WebCore/mathml/MathMLElement.cpp

    r48559 r52721  
    11/*
    2  *  Copyright (C) 2009 Alex Milowski (alex@milowski.com). All rights reserved.
    3  *
    4  *  This library is free software; you can redistribute it and/or
    5  *  modify it under the terms of the GNU Library General Public
    6  *  License as published by the Free Software Foundation; either
    7  *  version 2 of the License, or (at your option) any later version.
    8  * 
    9  *  This library is distributed in the hope that it will be useful,
    10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    12  *  Library General Public License for more details.
    13  * 
    14  *  You should have received a copy of the GNU Library General Public
    15  *  License along with this library; if not, write to the
    16  *  Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
    17  *  Boston, MA  02110-1301, USA.
    18  * 
     2 * Copyright (C) 2009 Alex Milowski (alex@milowski.com). All rights reserved.
     3 *
     4 * Redistribution and use in source and binary forms, with or without
     5 * modification, are permitted provided that the following conditions
     6 * are met:
     7 * 1. Redistributions of source code must retain the above copyright
     8 *    notice, this list of conditions and the following disclaimer.
     9 * 2. Redistributions in binary form must reproduce the above copyright
     10 *    notice, this list of conditions and the following disclaimer in the
     11 *    documentation and/or other materials provided with the distribution.
     12 *
     13 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     14 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     15 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
     16 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
     17 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
     18 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
     19 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    1924 */
    2025
  • trunk/WebCore/mathml/MathMLElement.h

    r48559 r52721  
    11/*
    2  *  Copyright (C) 2009 Alex Milowski (alex@milowski.com). All rights reserved.
    3  *
    4  *  This library is free software; you can redistribute it and/or
    5  *  modify it under the terms of the GNU Library General Public
    6  *  License as published by the Free Software Foundation; either
    7  *  version 2 of the License, or (at your option) any later version.
    8  * 
    9  *  This library is distributed in the hope that it will be useful,
    10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    12  *  Library General Public License for more details.
    13  * 
    14  *  You should have received a copy of the GNU Library General Public
    15  *  License along with this library; if not, write to the
    16  *  Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
    17  *  Boston, MA  02110-1301, USA.
    18  * 
     2 * Copyright (C) 2009 Alex Milowski (alex@milowski.com). All rights reserved.
     3 *
     4 * Redistribution and use in source and binary forms, with or without
     5 * modification, are permitted provided that the following conditions
     6 * are met:
     7 * 1. Redistributions of source code must retain the above copyright
     8 *    notice, this list of conditions and the following disclaimer.
     9 * 2. Redistributions in binary form must reproduce the above copyright
     10 *    notice, this list of conditions and the following disclaimer in the
     11 *    documentation and/or other materials provided with the distribution.
     12 *
     13 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     14 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     15 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
     16 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
     17 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
     18 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
     19 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    1924 */
    2025
  • trunk/WebCore/mathml/MathMLInlineContainerElement.cpp

    r48559 r52721  
    11/*
    2  *  Copyright (C) 2009 Alex Milowski (alex@milowski.com). All rights reserved.
    3  *
    4  *  This library is free software; you can redistribute it and/or
    5  *  modify it under the terms of the GNU Library General Public
    6  *  License as published by the Free Software Foundation; either
    7  *  version 2 of the License, or (at your option) any later version.
    8  * 
    9  *  This library is distributed in the hope that it will be useful,
    10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    12  *  Library General Public License for more details.
    13  * 
    14  *  You should have received a copy of the GNU Library General Public
    15  *  License along with this library; if not, write to the
    16  *  Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
    17  *  Boston, MA  02110-1301, USA.
    18  * 
     2 * Copyright (C) 2009 Alex Milowski (alex@milowski.com). All rights reserved.
     3 *
     4 * Redistribution and use in source and binary forms, with or without
     5 * modification, are permitted provided that the following conditions
     6 * are met:
     7 * 1. Redistributions of source code must retain the above copyright
     8 *    notice, this list of conditions and the following disclaimer.
     9 * 2. Redistributions in binary form must reproduce the above copyright
     10 *    notice, this list of conditions and the following disclaimer in the
     11 *    documentation and/or other materials provided with the distribution.
     12 *
     13 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     14 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     15 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
     16 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
     17 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
     18 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
     19 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    1924 */
    2025
  • trunk/WebCore/mathml/MathMLInlineContainerElement.h

    r48559 r52721  
    11/*
    2  *  Copyright (C) 2009 Alex Milowski (alex@milowski.com). All rights reserved.
    3  *
    4  *  This library is free software; you can redistribute it and/or
    5  *  modify it under the terms of the GNU Library General Public
    6  *  License as published by the Free Software Foundation; either
    7  *  version 2 of the License, or (at your option) any later version.
    8  * 
    9  *  This library is distributed in the hope that it will be useful,
    10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    12  *  Library General Public License for more details.
    13  * 
    14  *  You should have received a copy of the GNU Library General Public
    15  *  License along with this library; if not, write to the
    16  *  Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
    17  *  Boston, MA  02110-1301, USA.
    18  * 
     2 * Copyright (C) 2009 Alex Milowski (alex@milowski.com). All rights reserved.
     3 *
     4 * Redistribution and use in source and binary forms, with or without
     5 * modification, are permitted provided that the following conditions
     6 * are met:
     7 * 1. Redistributions of source code must retain the above copyright
     8 *    notice, this list of conditions and the following disclaimer.
     9 * 2. Redistributions in binary form must reproduce the above copyright
     10 *    notice, this list of conditions and the following disclaimer in the
     11 *    documentation and/or other materials provided with the distribution.
     12 *
     13 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     14 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     15 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
     16 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
     17 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
     18 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
     19 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    1924 */
    2025
  • trunk/WebCore/mathml/MathMLMathElement.cpp

    r48559 r52721  
    11/*
    2  *  Copyright (C) 2009 Alex Milowski (alex@milowski.com). All rights reserved.
    3  *
    4  *  This library is free software; you can redistribute it and/or
    5  *  modify it under the terms of the GNU Library General Public
    6  *  License as published by the Free Software Foundation; either
    7  *  version 2 of the License, or (at your option) any later version.
    8  * 
    9  *  This library is distributed in the hope that it will be useful,
    10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    12  *  Library General Public License for more details.
    13  * 
    14  *  You should have received a copy of the GNU Library General Public
    15  *  License along with this library; if not, write to the
    16  *  Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
    17  *  Boston, MA  02110-1301, USA.
    18  * 
     2 * Copyright (C) 2009 Alex Milowski (alex@milowski.com). All rights reserved.
     3 *
     4 * Redistribution and use in source and binary forms, with or without
     5 * modification, are permitted provided that the following conditions
     6 * are met:
     7 * 1. Redistributions of source code must retain the above copyright
     8 *    notice, this list of conditions and the following disclaimer.
     9 * 2. Redistributions in binary form must reproduce the above copyright
     10 *    notice, this list of conditions and the following disclaimer in the
     11 *    documentation and/or other materials provided with the distribution.
     12 *
     13 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     14 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     15 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
     16 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
     17 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
     18 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
     19 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    1924 */
    2025
  • trunk/WebCore/mathml/MathMLMathElement.h

    r48559 r52721  
    11/*
    2  *  Copyright (C) 2009 Alex Milowski (alex@milowski.com). All rights reserved.
    3  *
    4  *  This library is free software; you can redistribute it and/or
    5  *  modify it under the terms of the GNU Library General Public
    6  *  License as published by the Free Software Foundation; either
    7  *  version 2 of the License, or (at your option) any later version.
    8  * 
    9  *  This library is distributed in the hope that it will be useful,
    10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    12  *  Library General Public License for more details.
    13  * 
    14  *  You should have received a copy of the GNU Library General Public
    15  *  License along with this library; if not, write to the
    16  *  Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
    17  *  Boston, MA  02110-1301, USA.
    18  * 
     2 * Copyright (C) 2009 Alex Milowski (alex@milowski.com). All rights reserved.
     3 *
     4 * Redistribution and use in source and binary forms, with or without
     5 * modification, are permitted provided that the following conditions
     6 * are met:
     7 * 1. Redistributions of source code must retain the above copyright
     8 *    notice, this list of conditions and the following disclaimer.
     9 * 2. Redistributions in binary form must reproduce the above copyright
     10 *    notice, this list of conditions and the following disclaimer in the
     11 *    documentation and/or other materials provided with the distribution.
     12 *
     13 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     14 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     15 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
     16 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
     17 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
     18 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
     19 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    1924 */
    2025
Note: See TracChangeset for help on using the changeset viewer.